Skip to content

Commit

Permalink
Fix typo in unit test and add string literal access
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiajt committed Jun 14, 2011
1 parent 9d20f60 commit 9a015a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/index_operator.chai
Expand Up @@ -7,4 +7,4 @@ var b = Bob();


assert_equal(b.bob3()[0], 1);
assert_equal((b.bob3())[1, 2);
assert_equal((b.bob3())[1], 2);
1 change: 1 addition & 0 deletions unittests/string_literal_access.chai
@@ -0,0 +1 @@
assert_equal('b', "abc"[1])

0 comments on commit 9a015a5

Please sign in to comment.