From ad776421ed96a1265cd2bd5489ca53d8f1d6fb4b Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 14 Aug 2012 04:14:41 +0000 Subject: [PATCH] Try to fix pretty-test breakage. --- src/test/pretty/record-trailing-comma.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/pretty/record-trailing-comma.rs b/src/test/pretty/record-trailing-comma.rs index d603c1d8e57b..cfa5d1a99026 100644 --- a/src/test/pretty/record-trailing-comma.rs +++ b/src/test/pretty/record-trailing-comma.rs @@ -3,6 +3,6 @@ type thing = {x: int, y: int,}; fn main() { let sth = {x: 0, y: 1,}; - let sth2 = {y: 9 with sth}; + let sth2 = {y: 9 .. sth}; assert sth.x + sth2.y == 9; }