Skip to content

Commit 1968f14

Browse files
committed
fix: correct typo in division result message
1 parent 3fc8d63 commit 1968f14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lab3/lab3_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func TestCalculator(t *testing.T) {
1717
{"/sub/7/2/3", "Error!"},
1818
{"/mul/3/4", "3 * 4 = 12"},
1919
{"/mul/3", "Error!"},
20-
{"/div/10/3", "10 / 3 = 3, reminder = 1"},
20+
{"/div/10/3", "10 / 3 = 3, remainder 1"},
2121
{"/div/10/0", "Error!"},
2222
{"/div/10/3/4", "Error!"},
2323
{"/div/10/a", "Error!"},

0 commit comments

Comments
 (0)