diff options
Diffstat (limited to 'tests.nix')
-rw-r--r-- | tests.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests.nix b/tests.nix index 344f2c1f5934..f2380a770945 100644 --- a/tests.nix +++ b/tests.nix @@ -12,6 +12,7 @@ deepSeq rec { (float 13.37) (string "Hello!") (function (x: x * 2)) + (path /nix) ]; # Test that polymorphic types work as intended @@ -76,7 +77,7 @@ deepSeq rec { # Test that all types are types. testTypes = map type [ - any bool drv float int string + any bool drv float int string path (attrs int) (either int string) |