summaryrefslogtreecommitdiff
path: root/hamlet_test.go
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-30 11:19:45 -0400
committerdemo <demo@antix1>2026-05-30 11:19:45 -0400
commit607912892bc7f1dbbdf9a8a42bc91cdb9f480079 (patch)
treee1ecd4827fbb9de57c9bd0e113e1bec2b93de5d6 /hamlet_test.go
parenta7822e4da505e1aac12cd487a2b791ef1fe2cd41 (diff)
style: rename Value to Assert
Diffstat (limited to 'hamlet_test.go')
-rw-r--r--hamlet_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/hamlet_test.go b/hamlet_test.go
index cdbae0d..1a9df31 100644
--- a/hamlet_test.go
+++ b/hamlet_test.go
@@ -9,12 +9,12 @@ func TestAssertion(t *testing.T) {
q := New(4)
theorem1 := If(p, q)
- if v := theorem1.Value(); !v {
+ if v := theorem1.Assert(); !v {
t.Errorf("want %t, got %t", true, false)
}
theorem2 := If(q, p)
- if v := theorem2.Value(); v {
+ if v := theorem2.Assert(); v {
t.Errorf("want %t, got %t", false, true)
}
}