Skip to content

Commit 5937436

Browse files
committed
tests: fx the note
1 parent 2183d00 commit 5937436

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/NixLanguageTests.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ newFailingTests :: Set String
6161
newFailingTests = Set.fromList
6262
[ "eval-okay-hash"
6363
, "eval-okay-hashfile"
64-
, "eval-okay-path"
64+
, "eval-okay-path" -- #128
6565
, "eval-okay-types"
6666
, "eval-okay-fromTOML"
6767
, "eval-okay-context-introspection"
@@ -71,9 +71,9 @@ genTests :: IO TestTree
7171
genTests = do
7272
testFiles <-
7373
sort
74-
-- jww (2018-05-07): Temporarily disable this test until #128 is fixed.
75-
. filter ((`Set.notMember` newFailingTests) . takeBaseName)
76-
. filter ((/= ".xml") . takeExtension)
74+
-- Disabling the not yet done tests cases.
75+
. filter ((`Set.notMember` newFailingTests) . takeBaseName)
76+
. filter ((/= ".xml") . takeExtension)
7777
<$> globDir1 (compile "*-*-*.*") "data/nix/tests/lang"
7878
let testsByName = groupBy (takeFileName . dropExtensions) testFiles
7979
let testsByType = groupBy testType (Map.toList testsByName)

0 commit comments

Comments
 (0)