Skip to content

Commit eb20642

Browse files
author
Simon Taranto
committed
fix small typo in spec
1 parent aa7446d commit eb20642

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercism_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stretchr/testify/assert"
1111
)
1212

13-
func asserFileDoesNotExist(t *testing.T, filename string) {
13+
func assertFileDoesNotExist(t *testing.T, filename string) {
1414
_, err := os.Stat(filename)
1515

1616
if err == nil {
@@ -28,7 +28,7 @@ func TestLogoutDeletesConfigFile(t *testing.T) {
2828

2929
logout(tmpDir)
3030

31-
asserFileDoesNotExist(t, configuration.Filename(tmpDir))
31+
assertFileDoesNotExist(t, configuration.Filename(tmpDir))
3232
}
3333

3434
func TestAskForConfigInfoAllowsSpaces(t *testing.T) {

0 commit comments

Comments
 (0)