Skip to content

Commit

Permalink
Fix copy paste issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
emmansun authored Nov 6, 2023
1 parent 53ae6ee commit 33d4192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base64_arm64_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestUrlEncodeSIMD(t *testing.T) {
expected := []byte(p.encoded)
dst := make([]byte, len(expected))

ret := encodeAsm(dst, src, &StdEncoding.encode)
ret := encodeAsm(dst, src, &URLEncoding.encode)
if ret != len(expected) {
t.Fatalf("should return %v", len(expected))
}
Expand Down

0 comments on commit 33d4192

Please sign in to comment.