Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#3876 from FreeCodeCamp/fix/symmetric-dif
Browse files Browse the repository at this point in the history
remove test based on closed @saadanerdetbare PR, closes freeCodeCamp#3362
  • Loading branch information
QuincyLarson committed Oct 24, 2015
2 parents 2ebc551 + d5ddb10 commit 882b82f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions seed/challenges/advanced-bonfires.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@
"tests": [
"assert.sameMembers(sym([1, 2, 3], [5, 2, 1, 4]), [3, 5, 4], 'message: <code>sym([1, 2, 3], [5, 2, 1, 4])</code> should return <code>[3, 5, 4]</code>.');",
"assert.sameMembers(sym([1, 2, 5], [2, 3, 5], [3, 4, 5]), [1, 4, 5], 'message: <code>sym([1, 2, 5], [2, 3, 5], [3, 4, 5])</code> should return <code>[1, 4, 5]</code>');",
"assert.sameMembers(sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]), [1, 4, 5], 'message: <code>sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5])</code> should return <code>[1, 4, 5]</code>.');",
"assert.sameMembers(sym([1, 1]), [1], 'message: <code>sym([1, 1])</code> should return <code>[1]</code>.');"
],
"assert.sameMembers(sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]), [1, 4, 5], 'message: <code>sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5])</code> should return <code>[1, 4, 5]</code>.');"
],
"MDNlinks": [
"Array.reduce()",
"Symmetric Difference"
Expand Down

0 comments on commit 882b82f

Please sign in to comment.