Skip to content

Commit 675c636

Browse files
committed
Fix typo in test
1 parent d74cc65 commit 675c636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func TestCheckConversionM2(t *testing.T) {
178178
stdin.Close()
179179
outPrint, _ := ioutil.ReadAll(outPipe)
180180
if !strings.Contains(string(outPrint), "32 F = 0 C") {
181-
t.Fatal("Did not property convert temperature")
181+
t.Fatal("Did not properly convert temperature")
182182
}
183183
})
184184

@@ -264,7 +264,7 @@ func TestParsePromptToUpperM2(t *testing.T) {
264264
outPrint, _ := ioutil.ReadAll(outPipe)
265265
if !strings.Contains(string(outPrint), "32 F = 0 C") ||
266266
!strings.Contains(string(outPrint), "212 F = 100 C") {
267-
t.Fatal("Did not propery parse user input")
267+
t.Fatal("Did not properly parse user input")
268268
}
269269
})
270270
}

0 commit comments

Comments
 (0)