Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hovsep committed Feb 3, 2025
1 parent d86b969 commit 2a54e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmesh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ func TestFMesh_mustStop(t *testing.T) {
fm := tt.getFMesh()
got, stopErr := fm.mustStop()
if tt.wantErr != nil {
assert.EqualError(t, stopErr, tt.wantErr.Error())
assert.ErrorContains(t, stopErr, tt.wantErr.Error())
} else {
assert.NoError(t, stopErr)
}
Expand Down

0 comments on commit 2a54e88

Please sign in to comment.