Skip to content

Commit

Permalink
fix stderr to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
uv-orbs committed May 10, 2022
1 parent c57e6e3 commit ddd79ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recovery/recovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ func Test_RecoveryStderr(t *testing.T) {
r := GetInstance()
r.tick()

e := "invalid character"
if r.lastError[:len(e)] != e {
t.Errorf("expect:\n%s got:\n%s", e, r.lastError)
e := "write_stderr"
if r.lastOutput[:len(e)] != e {
t.Errorf("expect:\n%s got:\n%s", e, r.lastOutput)
}
}

Expand Down

0 comments on commit ddd79ef

Please sign in to comment.