Skip to content

Commit

Permalink
test(octokit): use assert instead of assertEqual for getLatestRel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
hasundue committed Oct 26, 2022
1 parent deb85e8 commit cc5c7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/octokit_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const github = new GitHubClient(env.GITHUB_TOKEN);

Deno.test("getLatestRelease", async () => {
const tag = await github.getLatestRelease(repo);
assertEquals(tag, VERSION);
assert(tag);
});

Deno.test("getBranch", async () => {
Expand Down

0 comments on commit cc5c7e2

Please sign in to comment.