Skip to content

Commit

Permalink
Merge pull request #1041 from SaintPeter/patch-3
Browse files Browse the repository at this point in the history
Fix missing semicolon in Symmetric Differences test
  • Loading branch information
Berkeley Martinez committed Jun 22, 2015
2 parents 9f1b6c5 + c113c72 commit 91cc320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed_data/challenges/advanced-bonfires.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"sym([1, 2, 3], [5, 2, 1, 4]);"
],
"tests": [
"expect(sym([1, 2, 3], [5, 2, 1, 4])).to.eqls([3, 5, 4])",
"expect(sym([1, 2, 3], [5, 2, 1, 4])).to.eqls([3, 5, 4]);",
"assert.deepEqual(sym([1, 2, 5], [2, 3, 5], [3, 4, 5]), [1, 4, 5], 'should return the symmetric difference of the given arrays');",
"assert.deepEqual(sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]), [1, 4, 5], 'should return an array of unique values');",
"assert.deepEqual(sym([1, 1]), [1], 'should return an array of unique values');"
Expand Down

0 comments on commit 91cc320

Please sign in to comment.