Skip to content

Commit

Permalink
Flip boolean logic
Browse files Browse the repository at this point in the history
  • Loading branch information
tstromberg committed Mar 6, 2020
1 parent b5f1cf8 commit 318f9f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/none_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func TestChangeNoneUser(t *testing.T) {
t.Errorf("stat(%s): %v", p, err)
continue
}
if info == nil && info.Sys() == nil {
if info == nil || info.Sys() == nil {
t.Errorf("nil info for %s", p)
continue
}
Expand Down

0 comments on commit 318f9f2

Please sign in to comment.