jws: Fix typo in jws_test

Test is currently failing due to a missed colon during cleanup.

Change-Id: I8cef4b679b2d981ad159441bffac67b7b23862aa
Reviewed-on: https://go-review.googlesource.com/22742
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Jeff Craig 2016-05-03 17:20:30 -05:00 committed by Brad Fitzpatrick
parent 14446d3f8b
commit 8434495902
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func TestSignAndVerify(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
err := Verify(token, &privateKey.PublicKey) err = Verify(token, &privateKey.PublicKey)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }