Skip to content

Commit b561db4

Browse files
committed
change require back to assert, not sure why I changed this before
Signed-off-by: Callum Styan <callumstyan@gmail.com>
1 parent 364c8bf commit b561db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/logout_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func TestLogout(t *testing.T) {
9797
go func() {
9898
defer close(logoutChan)
9999
err = logout.Run()
100-
require.Contains(t, err.Error(), fmt.Sprintf("Try logging in using '%s login <url>'.", executable))
100+
assert.Contains(t, err.Error(), fmt.Sprintf("Try logging in using '%s login <url>'.", executable))
101101
}()
102102

103103
<-logoutChan

0 commit comments

Comments
 (0)