commit c443ed5f22402f882298a1228e155946749e00f1
parent 6b4c2b30192c7fb6282dbca0ae8ed6c1a35db0c2
Author: Lou Woell <lou.woell@posteo.de>
Date: Mon, 16 Feb 2026 18:28:57 +0100
Hare-0.26: fix test
os::stdout is a variable, not a function now.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/harehelper/+test/locate_test.ha b/cmd/harehelper/+test/locate_test.ha
@@ -43,11 +43,11 @@ fn loc_test_fn (in: str, out: lex::location) void = {
};
};
-@test fn locate_stdlib_func() void = {
+@test fn locate_stdlib_var() void = {
loc_test_fn("os::stdout", lex::location {
path = "stdfd.ha",
line = 29,
- col = 7,
+ col = 1,
...
});
};