Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Dec 15, 2023
1 parent 927e242 commit a19be01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/resources/units.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('Units Resource CRUD', function () {
.get('/v1/units')
.query({ page: 1, limit: 1 });

expect(result.body.data.length).to.not.equal(1);
expect(result.body.data.length).to.equal(1);
}).timeout(TEST_WAIT_TIME * 10);
it('finds a single result by warehouseUnitId', async function () {
// ?warehouseUnitId=XXXX
Expand Down

0 comments on commit a19be01

Please sign in to comment.