aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2022-12-10 14:11:12 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2022-12-10 14:11:12 +0000
commita752a61a3aee6f3d606b6b3ede36ab1b4c510c3b (patch)
tree83d93c0b2084e71a9e25a08358b0135802b19aef
parent16edafb4f96ec7accf2d797d10064364b5efdd5a (diff)
Fix typo
-rw-r--r--testing.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing.go b/testing.go
index 40b0c42..c8bd66a 100644
--- a/testing.go
+++ b/testing.go
@@ -24,7 +24,7 @@ func (t *T) Assert(b bool) bool {
t.Helper()
if !b {
- t.Error("\nexepected value to be true")
+ t.Error("\nexpected value to be true")
}
return b
}