We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa7446d + eb20642 commit 35c41f2Copy full SHA for 35c41f2
exercism_test.go
@@ -10,7 +10,7 @@ import (
10
"github.com/stretchr/testify/assert"
11
)
12
13
-func asserFileDoesNotExist(t *testing.T, filename string) {
+func assertFileDoesNotExist(t *testing.T, filename string) {
14
_, err := os.Stat(filename)
15
16
if err == nil {
@@ -28,7 +28,7 @@ func TestLogoutDeletesConfigFile(t *testing.T) {
28
29
logout(tmpDir)
30
31
- asserFileDoesNotExist(t, configuration.Filename(tmpDir))
+ assertFileDoesNotExist(t, configuration.Filename(tmpDir))
32
}
33
34
func TestAskForConfigInfoAllowsSpaces(t *testing.T) {
0 commit comments