about summary refs log tree commit diff
path: root/src/test/run-pass/hashmap-memory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/hashmap-memory.rs')
-rw-r--r--src/test/run-pass/hashmap-memory.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass/hashmap-memory.rs b/src/test/run-pass/hashmap-memory.rs
index 69060afce56..343a042dbc1 100644
--- a/src/test/run-pass/hashmap-memory.rs
+++ b/src/test/run-pass/hashmap-memory.rs
@@ -46,7 +46,7 @@ mod map_reduce {
             let c;
             alt im.find(key) {
               some(_c) { c = _c }
-              none. {
+              none {
                 let p = port();
                 #error("sending find_reducer");
                 send(ctrl, find_reducer(str::bytes(key), chan(p)));
@@ -78,12 +78,12 @@ mod map_reduce {
 
         while num_mappers > 0 {
             alt recv(ctrl) {
-              mapper_done. { num_mappers -= 1; }
+              mapper_done { num_mappers -= 1; }
               find_reducer(k, cc) {
                 let c;
                 alt reducers.find(str::unsafe_from_bytes(k)) {
                   some(_c) { c = _c; }
-                  none. { c = 0; }
+                  none { c = 0; }
                 }
                 send(cc, c);
               }