Skip to content

Commit

Permalink
fixup! Fix false negative in for-in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Apr 5, 2022
1 parent 384a4e1 commit f60d7cf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/language/statements/for-in/S12.6.4_A7_T2.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,10 @@ for (var __key in __obj){

}

<<<<<<< HEAD
assert(
__accum === "aa1ca3" || __accum === "ca3aa1",
"Unexpected value: '" + __accum + "'"
);
=======
assert.sameValue(__accum, "aa1ca3");
>>>>>>> eeb002c698 (Fix false negative in for-in test)

// erasator is the hash map terminator
function erasator_T_1000(hash_map, charactr){
Expand Down

0 comments on commit f60d7cf

Please sign in to comment.