Fixing a test from internal test suite.
This commit is contained in:
@@ -13,4 +13,4 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
var x = 1;
|
var x = 1;
|
||||||
assert((x - 1 !== 0) || (1 - x !== 0))
|
assert(!((x - 1 !== 0) || (1 - x !== 0)))
|
||||||
|
|||||||
@@ -20,4 +20,4 @@ object = {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert((object - 1 !== 0) || (1 - object !== 0))
|
assert(!((object - 1 !== 0) || (1 - object !== 0)));
|
||||||
|
|||||||
Reference in New Issue
Block a user