about summary refs log tree commit diff
path: root/src/test/stdtest
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-09-01 18:49:10 -0700
committerBrian Anderson <banderson@mozilla.com>2011-09-01 18:54:03 -0700
commit418d09e547a021ad4853680f7efc3efc8774054c (patch)
treeb6cd0c22529d90105a7cc1d87fde5504f31031f5 /src/test/stdtest
parentb4b81117ce3713599b48d2168bf10e0225f94819 (diff)
downloadrust-418d09e547a021ad4853680f7efc3efc8774054c.tar.gz
rust-418d09e547a021ad4853680f7efc3efc8774054c.zip
Convert all uses of #ifmt to #fmt. Issue #855
Diffstat (limited to 'src/test/stdtest')
-rw-r--r--src/test/stdtest/qsort.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/stdtest/qsort.rs b/src/test/stdtest/qsort.rs
index 8aaf9c61428..32109dc1caa 100644
--- a/src/test/stdtest/qsort.rs
+++ b/src/test/stdtest/qsort.rs
@@ -54,7 +54,7 @@ fn test_simple() {
  // Silly, but what else can we do?
     check vec::same_length(expected, immut_names);
     let pairs = vec::zip(expected, immut_names);
-    for (a, b) in pairs { log #ifmt["%d %d", a, b]; assert (a == b); }
+    for (a, b) in pairs { log #fmt["%d %d", a, b]; assert (a == b); }
 }
 
 // Local Variables: