diff options
Diffstat (limited to 'pkg/usermem/usermem_test.go')
-rw-r--r-- | pkg/usermem/usermem_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/usermem/usermem_test.go b/pkg/usermem/usermem_test.go index 4fedb57a5..597770ca7 100644 --- a/pkg/usermem/usermem_test.go +++ b/pkg/usermem/usermem_test.go @@ -214,7 +214,7 @@ func TestCopyStringInNoTerminatingZeroByte(t *testing.T) { func TestCopyStringInTruncatedByMaxlen(t *testing.T) { got, err := CopyStringIn(newContext(), newBytesIOString(strings.Repeat("A", 10)), 0, 5, IOOpts{}) - if want, wantErr := strings.Repeat("A", 5), syserror.ENAMETOOLONG; got != want || err != wantErr { + if want, wantErr := strings.Repeat("A", 5), linuxerr.ENAMETOOLONG; got != want || err != wantErr { t.Errorf("CopyStringIn: got (%q, %v), wanted (%q, %v)", got, err, want, wantErr) } } |