Skip to content

Commit

Permalink
コメントのタイポを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yutteee committed Aug 11, 2023
1 parent 6f97219 commit 612e640
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 612e640

Please sign in to comment.