aboutsummaryrefslogtreecommitdiff
path: root/tests/lang/eval-okay-fromjson.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/eval-okay-fromjson.nix')
-rw-r--r--tests/lang/eval-okay-fromjson.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-fromjson.nix b/tests/lang/eval-okay-fromjson.nix
index 5ed0c1c43..2a9ad0cab 100644
--- a/tests/lang/eval-okay-fromjson.nix
+++ b/tests/lang/eval-okay-fromjson.nix
@@ -12,7 +12,9 @@ builtins.fromJSON
"Width": 100
},
"Animated" : false,
- "IDs": [116, 943, 234, 38793, true ,false,null, -100]
+ "IDs": [116, 943, 234, 38793, true ,false,null, -100],
+ "Latitude": 37.7668,
+ "Longitude": -122.3959,
}
}
''
@@ -28,5 +30,7 @@ builtins.fromJSON
};
Animated = false;
IDs = [ 116 943 234 38793 true false null (0-100) ];
+ Latitude = 37.7668;
+ Longitude = -122.3959;
};
}