aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/task-comm.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/task-comm.rs')
-rw-r--r--src/test/run-pass/task-comm.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/task-comm.rs b/src/test/run-pass/task-comm.rs
index 74faa149..7199db0c 100644
--- a/src/test/run-pass/task-comm.rs
+++ b/src/test/run-pass/task-comm.rs
@@ -97,12 +97,12 @@ fn test03() {
}
fn test04_start() {
- log "Started Task";
+ log "Started task";
let int i = 1024 * 1024 * 64;
while (i > 0) {
i = i - 1;
}
- log "Finished Task";
+ log "Finished task";
}
fn test04() {