summaryrefslogtreecommitdiff
path: root/tests/query.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query.ur')
-rw-r--r--tests/query.ur2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/query.ur b/tests/query.ur
index 1039e40a..91c0cee3 100644
--- a/tests/query.ur
+++ b/tests/query.ur
@@ -6,7 +6,7 @@ datatype list a = Nil | Cons of a * list a
val q1 = (SELECT * FROM t1)
val r1 : transaction (list {A : int, B : string, C : float}) =
query q1
- (fn fs _ acc => return (Cons (fs.T1, acc)))
+ (fn fs acc => return (Cons (fs.T1, acc)))
Nil
val r2 : transaction string =