Skip to content

Commit 4110166

Browse files
committed
Merge pull request exercism#82 from srt32/st-spec-typo
fix small typo in spec
2 parents ed7a545 + c43e742 commit 4110166

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)