Skip to content

Commit

Permalink
Merge pull request #9 from yutteee/fix/typo
Browse files Browse the repository at this point in the history
コメントのタイポを修正
  • Loading branch information
takefumi-yoshii committed Aug 15, 2023
2 parents 6f97219 + 612e640 commit 30183e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/03/06/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe("数値の検証", () => {
});
test("検証値 は 期待値 より大きい", () => {
expect(value).toBeGreaterThan(3); // 4 > 3
expect(value).toBeGreaterThanOrEqual(4); // 4 >= 3
expect(value).toBeGreaterThanOrEqual(4); // 4 >= 4
});
test("検証値 は 期待値 より小さい", () => {
expect(value).toBeLessThan(5); // 4 < 5
Expand Down

0 comments on commit 30183e5

Please sign in to comment.