Fixing a test from internal test suite.

This commit is contained in:
Ruben Ayrapetyan 2014-10-15 18:44:25 +04:00
parent b7df625666
commit 9bafe2a2ae
2 changed files with 2 additions and 2 deletions

View File

@ -13,4 +13,4 @@
// limitations under the License.
var x = 1;
assert((x - 1 !== 0) || (1 - x !== 0))
assert(!((x - 1 !== 0) || (1 - x !== 0)))

View File

@ -20,4 +20,4 @@ object = {
return 0;
}
}
assert((object - 1 !== 0) || (1 - object !== 0))
assert(!((object - 1 !== 0) || (1 - object !== 0)));