Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #173 from square/cs/1.10-fix
Browse files Browse the repository at this point in the history
Fix for Go 1.10 build error
  • Loading branch information
csstaub committed Feb 28, 2018
2 parents 5da986d + 9863951 commit 6ee9219
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Expand Up @@ -8,11 +8,12 @@ matrix:
- go: tip

go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- '1.5.x'
- '1.6.x'
- '1.7.x'
- '1.8.x'
- '1.9.x'
- '1.10.x'
- tip

go_import_path: gopkg.in/square/go-jose.v2
Expand Down
2 changes: 1 addition & 1 deletion crypter_test.go
Expand Up @@ -402,7 +402,7 @@ func TestEncrypterExtraHeaderInclusion(t *testing.T) {
if parsed.Header.ExtraHeaders[HeaderType] != "JWT" ||
parsed.Header.ExtraHeaders[HeaderContentType] != "JWT" ||
parsed.Header.ExtraHeaders[HeaderKey("myCustomHeader")] != "xyz" {
t.Fatal("Mismatch in extra headers: %#v", parsed.Header.ExtraHeaders)
t.Fatalf("Mismatch in extra headers: %#v", parsed.Header.ExtraHeaders)
}
}

Expand Down

0 comments on commit 6ee9219

Please sign in to comment.