Skip to content

Commit

Permalink
fix: Update wrong dataset length assertion in DatasetFilter test
Browse files Browse the repository at this point in the history
  • Loading branch information
Junjiequan committed Jul 19, 2024
1 parent 53f3710 commit 03b8695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/DatasetFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ describe("0400: DatasetFilter: Test retrieving datasets using filtering capabili
.expect(TestData.SuccessfulGetStatusCode)
.expect("Content-Type", /json/)
.then((res) => {
res.body.length.should.be.equal(0);
res.body.length.should.be.equal(1);
});
});

Expand Down

0 comments on commit 03b8695

Please sign in to comment.