diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-08-14 16:54:13 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-08-15 14:14:20 -0700 |
| commit | 74c69e1053188d92b86bc8b28cbf1af87d31ea2d (patch) | |
| tree | 8c07fc440e572eb59787705a9dd11fcd789430e0 /src/rustc/front | |
| parent | 8be0f665bcda9f5e4077d0be6ebc6aa382e72319 (diff) | |
| download | rust-74c69e1053188d92b86bc8b28cbf1af87d31ea2d.tar.gz rust-74c69e1053188d92b86bc8b28cbf1af87d31ea2d.zip | |
Convert more core types to camel case
Diffstat (limited to 'src/rustc/front')
| -rw-r--r-- | src/rustc/front/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/front/test.rs b/src/rustc/front/test.rs index 2f892c9ba9d..90de6a4335f 100644 --- a/src/rustc/front/test.rs +++ b/src/rustc/front/test.rs @@ -9,7 +9,7 @@ import syntax::codemap::span; import driver::session; import session::session; import syntax::attr; -import dvec::dvec; +import dvec::{DVec, dvec}; export modify_for_testing; @@ -22,7 +22,7 @@ type test_ctxt = @{sess: session::session, crate: @ast::crate, mut path: ~[ast::ident], - testfns: dvec<test>}; + testfns: DVec<test>}; // Traverse the crate, collecting all the test functions, eliding any // existing main functions, and synthesizing a main test harness |
