Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
emmansun authored Nov 3, 2023
1 parent e635bf6 commit 6c5c44b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
go-version: [1.18.x]
arch: [arm64]
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion base64_arm64_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func TestStdEncodeSIMD(t *testing.T) {
expected := []byte(p.encoded)
dst := make([]byte, len(expected))

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

0 comments on commit 6c5c44b

Please sign in to comment.