Skip to content

Commit

Permalink
Fix missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljungberg committed Mar 12, 2012
1 parent e636087 commit a02c687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Foundation/CPKeyedArchiverTest.j
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[original setAJsObject:{ 'top': 5 }];

var decoded = [CPKeyedUnarchiver unarchiveObjectWithData:[CPKeyedArchiver archivedDataWithRootObject:original]]
var decoded = [CPKeyedUnarchiver unarchiveObjectWithData:[CPKeyedArchiver archivedDataWithRootObject:original]];

[self assert:5 equals:[decoded aJsObject].top message:"JS object encoded and decoded right"];
}
Expand Down

0 comments on commit a02c687

Please sign in to comment.