From c053a9ab504d03bacffa111b3ed6c20b25216ac1 Mon Sep 17 00:00:00 2001 From: Acho Arnold Date: Mon, 30 Mar 2015 13:19:24 +0100 Subject: [PATCH] All: fix some unnecessary redirects Closes gh-105 --- entries/QUnit.test.xml | 2 +- entries/deepEqual.xml | 2 +- entries/equal.xml | 4 ++-- entries/notDeepEqual.xml | 2 +- entries/notEqual.xml | 4 ++-- entries/notPropEqual.xml | 4 ++-- entries/notStrictEqual.xml | 4 ++-- entries/propEqual.xml | 4 ++-- entries/strictEqual.xml | 4 ++-- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/entries/QUnit.test.xml b/entries/QUnit.test.xml index c09625e..eaac8b9 100644 --- a/entries/QUnit.test.xml +++ b/entries/QUnit.test.xml @@ -19,7 +19,7 @@

Add a test to run using QUnit.test().

The assert argument to the callback contains all of QUnit's assertion methods. Use this argument to call your test assertions.

-

This method used to have an optional second argument called expected. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use assert.expect() instead.

+

This method used to have an optional second argument called expected. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use assert.expect() instead.

QUnit.test() can automatically handle the asynchronous resolution of a Promise on your behalf if you return a thenable Promise as the result of your callback function.

diff --git a/entries/deepEqual.xml b/entries/deepEqual.xml index 76e2196..c89303c 100644 --- a/entries/deepEqual.xml +++ b/entries/deepEqual.xml @@ -18,7 +18,7 @@

The deepEqual() assertion can be used just like equal() when comparing the value of objects, such that { key: value } is equal to { key: value }. For non-scalar values, identity will be disregarded by deepEqual.

-

notDeepEqual() can be used to explicitly test deep, strict inequality.

+

notDeepEqual() can be used to explicitly test deep, strict inequality.

Compare the value of two objects. diff --git a/entries/equal.xml b/entries/equal.xml index eecb5ec..9194cd1 100644 --- a/entries/equal.xml +++ b/entries/equal.xml @@ -18,8 +18,8 @@

The equal assertion uses the simple comparison operator (==) to compare the actual and expected arguments. When they are equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.

-

notEqual() can be used to explicitly test inequality.

-

strictEqual() can be used to test strict equality.

+

notEqual() can be used to explicitly test inequality.

+

strictEqual() can be used to test strict equality.

The simplest assertion example: diff --git a/entries/notDeepEqual.xml b/entries/notDeepEqual.xml index 0fc9d47..6373c30 100644 --- a/entries/notDeepEqual.xml +++ b/entries/notDeepEqual.xml @@ -18,7 +18,7 @@

The notDeepEqual() assertion can be used just like equal() when comparing the value of objects, such that { key: value } is equal to { key: value }. For non-scalar values, identity will be disregarded by notDeepEqual.

-

deepEqual() can be used to explicitly test deep, strict equality.

+

deepEqual() can be used to explicitly test deep, strict equality.

Compare the value of two objects. diff --git a/entries/notEqual.xml b/entries/notEqual.xml index b373896..68f069d 100644 --- a/entries/notEqual.xml +++ b/entries/notEqual.xml @@ -18,8 +18,8 @@

The notEqual assertion uses the simple inverted comparison operator (!=) to compare the actual and expected arguments. When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.

-

equal() can be used to test equality.

-

notStrictEqual() can be used to test strict inequality.

+

equal() can be used to test equality.

+

notStrictEqual() can be used to test strict inequality.

The simplest assertion example: diff --git a/entries/notPropEqual.xml b/entries/notPropEqual.xml index d611228..12ca997 100644 --- a/entries/notPropEqual.xml +++ b/entries/notPropEqual.xml @@ -19,8 +19,8 @@

The notPropEqual assertion uses the strict inverted comparison operator (!==) to compare the actual and expected arguments as Objects regarding only their properties but not their constructors.

When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.

-

equal() can be used to test equality.

-

propEqual() can be used to test strict equality of an Object properties.

+

equal() can be used to test equality.

+

propEqual() can be used to test strict equality of an Object properties.

Compare the values of two objects properties. diff --git a/entries/notStrictEqual.xml b/entries/notStrictEqual.xml index 7313511..6ac3110 100644 --- a/entries/notStrictEqual.xml +++ b/entries/notStrictEqual.xml @@ -18,8 +18,8 @@

The notStrictEqual assertion uses the strict inverted comparison operator (!==) to compare the actual and expected arguments. When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.

-

equal() can be used to test equality.

-

strictEqual() can be used to test strict equality.

+

equal() can be used to test equality.

+

strictEqual() can be used to test strict equality.

The simplest assertion example: diff --git a/entries/propEqual.xml b/entries/propEqual.xml index 8d099a0..9f6e93a 100644 --- a/entries/propEqual.xml +++ b/entries/propEqual.xml @@ -18,8 +18,8 @@

The propEqual() assertion provides strictly (===) comparison of Object properties. Unlike deepEqual(), this assertion can be used to compare two objects made with different constructors and prototype.

-

strictEqual() can be used to test strict equality.

-

notPropEqual() can be used to explicitly test strict inequality of Object properties.

+

strictEqual() can be used to test strict equality.

+

notPropEqual() can be used to explicitly test strict inequality of Object properties.

Compare the properties values of two objects. diff --git a/entries/strictEqual.xml b/entries/strictEqual.xml index d02c7b3..8449f0f 100644 --- a/entries/strictEqual.xml +++ b/entries/strictEqual.xml @@ -18,8 +18,8 @@

The strictEqual() assertion provides the most rigid comparison of type and value with the strict equality operator (===).

-

equal() can be used to test non-strict equality.

-

notStrictEqual() can be used to explicitly test strict inequality.

+

equal() can be used to test non-strict equality.

+

notStrictEqual() can be used to explicitly test strict inequality.

Compare the value of two primitives, having the same value and type.