🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try not using strictEqual and just equal
It looks like it should be passing
  • Loading branch information
Dallas Fraser committed Aug 20, 2020
commit f5cb5869443fb8d26c2c23519368b184b1059d4c
2 changes: 1 addition & 1 deletion test/unit/ajax.js
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ QUnit.module( "ajax", {
// error is the significant assertion
error: function( xhr ) {
var expected = { "status": 404, "msg": "Not Found" };
assert.strictEqual( xhr.responseJSON, expected, testMsg );
assert.equal( xhr.responseJSON, expected, testMsg );
}
};
} );
Expand Down