From 72b7a7707f7baead4e569c9d3ec2fe28b9486ac9 Mon Sep 17 00:00:00 2001
From: Brian Anderson <banderson@mozilla.com>
Date: Wed, 3 Oct 2012 14:29:39 -0700
Subject: [PATCH] test: Use println instead of debug in hello.rs

---
 src/test/run-pass/hello.rs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/test/run-pass/hello.rs b/src/test/run-pass/hello.rs
index 5f61c554992..5b0664f400b 100644
--- a/src/test/run-pass/hello.rs
+++ b/src/test/run-pass/hello.rs
@@ -1,5 +1,5 @@
-
-
-
 // -*- rust -*-
-fn main() { debug!("hello, world."); }
+
+fn main() {
+    io::println("hello, world");
+}