about summary refs log tree commit diff
path: root/tests/source/struct_lits.rs
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2015-09-26 18:35:17 +1200
committerNick Cameron <ncameron@mozilla.com>2015-09-26 18:35:17 +1200
commite4c15b4e1ccdf7739bb3b6b855533036ea110e9d (patch)
tree871e076e533b83abcfc96e6b4f95f610b261a9cc /tests/source/struct_lits.rs
parent617eed353cd52007667df8cbd647634014ec0211 (diff)
Fix tests
Diffstat (limited to 'tests/source/struct_lits.rs')
-rw-r--r--tests/source/struct_lits.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/source/struct_lits.rs b/tests/source/struct_lits.rs
index bb82eefb7f4..aecbc285fc6 100644
--- a/tests/source/struct_lits.rs
+++ b/tests/source/struct_lits.rs
@@ -8,9 +8,9 @@ fn main() {
 
     Foo { a: foo() /* comment*/, /* comment*/ b: bar(), ..something };
 
-    Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(), b: bar(), };
+    Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: f(), b: b(), };
 
-    Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(), b: bar(), };
+    Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: f(), b: b(), };
 
     Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo {
         // Comment
@@ -20,7 +20,7 @@ fn main() {
     };
 
     Foo { a:Bar,
-          b:foo() };
+          b:f() };
 
     Quux { x: if cond { bar(); }, y: baz() };