Skip to content

Commit 35c41f2

Browse files
committed
Merge pull request #82 from srt32/st-spec-typo
fix small typo in spec
2 parents aa7446d + eb20642 commit 35c41f2

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)