Skip to content

Commit

Permalink
sumdb/note: fix some typos
Browse files Browse the repository at this point in the history
Change-Id: I5892e2a3bb32c70ea585987d70d02d95723eb9a7
GitHub-Last-Rev: 0991638
GitHub-Pull-Request: #11
Reviewed-on: https://go-review.googlesource.com/c/mod/+/428575
Run-TryBot: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
  • Loading branch information
cuishuang authored and gopherbot committed Sep 6, 2022
1 parent ed83ed6 commit 8f535f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sumdb/note/note_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ func testSignerAndVerifier(t *testing.T, Name string, signer Signer, verifier Ve
}
sig[0]++
if verifier.Verify(msg, sig) {
t.Fatalf("verifier.Verify succceeded on corrupt signature")
t.Fatalf("verifier.Verify succeeded on corrupt signature")
}
sig[0]--
msg[0]++
if verifier.Verify(msg, sig) {
t.Fatalf("verifier.Verify succceeded on corrupt message")
t.Fatalf("verifier.Verify succeeded on corrupt message")
}
}

Expand Down

0 comments on commit 8f535f7

Please sign in to comment.