Skip to content

Commit

Permalink
Fix tests to expect false
Browse files Browse the repository at this point in the history
  • Loading branch information
confused-Techie committed Feb 20, 2024
1 parent b23a92c commit ea20d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/query.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ describe("Verify Auth Query Returns", () => {

const repositoryCases = [
[{ query: { repository: "owner/repo" } }, "owner/repo"],
[{ query: {} }, ""],
[{ query: { repository: "InvalidRepo" } }, ""],
[{ query: {} }, false],
[{ query: { repository: "InvalidRepo" } }, false],
[{ query: { repository: "[email protected]:ndr-brt/pulsar-p5js" } }, "[email protected]:ndr-brt/pulsar-p5js"],
];

Expand Down

0 comments on commit ea20d04

Please sign in to comment.