Skip to content

Commit

Permalink
lint issue redhat-developer#2
Browse files Browse the repository at this point in the history
  • Loading branch information
girishramnani committed Nov 18, 2019
1 parent d98d63c commit 4056d1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,9 @@ func TestDeleteConfigDirIfEmpty(t *testing.T) {
odoDir := filepath.Join(configDir, ".odo")

file, err := fs.Create(filepath.Join(odoDir, "testfile"))
if err != nil {
t.Error(err)
}
_, err = file.Write([]byte("hello world"))
if err != nil {
t.Error(err)
Expand Down

0 comments on commit 4056d1f

Please sign in to comment.