diff options
| author | Carlos Carvalho <[email protected]> | 2020-10-04 02:11:18 -0300 |
|---|---|---|
| committer | Carlos Carvalho <[email protected]> | 2020-10-04 02:11:18 -0300 |
| commit | e02bef83aa53c79f8bd43068bfa346258c878189 (patch) | |
| tree | 7a808db452bc6b0ea791cfc4385f9ba5db2a7030 | |
| parent | 2a938bd11b781f61718e2ddfb8a6419002d9e757 (diff) | |
| download | faker-e02bef83aa53c79f8bd43068bfa346258c878189.tar.xz faker-e02bef83aa53c79f8bd43068bfa346258c878189.zip | |
Fix wrong change on assert not equsl
| -rw-r--r-- | test/image.unit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/image.unit.js b/test/image.unit.js index 7279e6a0..f0e37fdd 100644 --- a/test/image.unit.js +++ b/test/image.unit.js @@ -43,7 +43,7 @@ describe("image.js", function () { }); describe("avatar()", function () { it("return a random avatar from UIFaces", function () { - assert.strictEqual(-1, faker.image.lorempicsum.avatar().indexOf('s3.amazonaws.com/uifaces/faces')); + assert.notStrictEqual(-1, faker.image.lorempicsum.avatar().indexOf('s3.amazonaws.com/uifaces/faces')); }) }); |
