Skip to content

Commit

Permalink
fix test mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme committed Jan 29, 2015
1 parent 5be64f6 commit 3050f4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion tests/fsharp/core/array/test.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,9 @@ module CheckUnionTypesAreSealed =
type X2 = A | B of string
do check "vwllfewlkefw4" (typedefof<X2>.IsSealed) false
type X3 = A | B | C
do check "vwllfewlkefw5" (typedefof<X3>.IsSealed) false
do check "vwllfewlkefw5" (typedefof<X3>.IsSealed) true
type X4 = A | B | C | D | E | F | G | H | I
do check "vwllfewlkefw5" (typedefof<X4>.IsSealed) true

[<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>]
type SetTree<'T> =
Expand Down
4 changes: 2 additions & 2 deletions tests/test.lst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Core01,Smoke fsharp\core\access
Core01 fsharp\core\apporder
Core01 fsharp\core\array
Core01,Smoke fsharp\core\array
Core01 fsharp\core\attributes
Core01 fsharp\core\comprehensions
Core01 fsharp\core\control
Expand All @@ -31,7 +31,7 @@ Core02 fsharp\core\fsi-shadowcopy
Core02 fsharp\core\genericmeasures
Core02 fsharp\core\hiding
Core03 fsharp\core\innerpoly
Core03 fsharp\core\int32
Core03,Smoke fsharp\core\int32
Core03 fsharp\core\internalsvisible
Core03 fsharp\core\interop
Core03 fsharp\core\lazy
Expand Down

0 comments on commit 3050f4f

Please sign in to comment.