Skip to content

Commit

Permalink
fix escaping in test for jashkenas#2333
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed May 16, 2012
1 parent c6fafa1 commit f31ff77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/strict.coffee
Expand Up @@ -65,11 +65,11 @@ test "#2333: more duplicate property prohibitions", ->
strict "{'a':0, a:0}"
strict '{\'a\':0, "a":0}'
strict '{0:0, 0x0:0}'
strict '{0:0, "\x30":0}'
strict '{0:0, "\\x30":0}'
strict '{.1:0, 0.1:0}'
strict '{.1:0, 1e-1:0}'
strict '{100:0, 1e2:0}'
strict '{"\0":0, "\x00":0}'
strict '{"\\0":0, "\\x00":0}'
strict 'a = 0; {a, "a":0}'
strictOk '{0:0, "0x0":0}'
strictOk '{"a":0, "\'a\'":0}'
Expand Down

0 comments on commit f31ff77

Please sign in to comment.