about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorJohn Gallagher <jgallagher@bignerdranch.com>2014-10-07 22:18:12 -0400
committerJohn Gallagher <jgallagher@bignerdranch.com>2014-10-07 22:18:12 -0400
commit7091fe39720b6a41b1eb08044fccd23d37d3166f (patch)
treed182fa588d08109b56078b96814ad31c6bbaf924 /src/libstd/io
parent1426f5834c96234bc1998921e889cfc5ca4893c8 (diff)
downloadrust-7091fe39720b6a41b1eb08044fccd23d37d3166f.tar.gz
rust-7091fe39720b6a41b1eb08044fccd23d37d3166f.zip
Remove use of `final` and `override` (now reserved)
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/timer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/timer.rs b/src/libstd/io/timer.rs
index 55d4073154e..e7df0285540 100644
--- a/src/libstd/io/timer.rs
+++ b/src/libstd/io/timer.rs
@@ -308,7 +308,7 @@ mod test {
     }
 
     #[test]
-    fn override() {
+    fn test_override() {
         let mut timer = Timer::new().unwrap();
         let orx = timer.oneshot(Duration::milliseconds(100));
         let prx = timer.periodic(Duration::milliseconds(100));