diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-08-25 11:11:21 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-08-27 15:54:44 -0700 |
| commit | 15e3ae79360508dc44f428f99bb483038fb2ab1e (patch) | |
| tree | 51242ae2fd6af2abb879d6f493241397ffb33485 /src/test/stdtest | |
| parent | 85b4253bc1946a1e17fe7d93a80fbb5bea96ee27 (diff) | |
| download | rust-15e3ae79360508dc44f428f99bb483038fb2ab1e.tar.gz rust-15e3ae79360508dc44f428f99bb483038fb2ab1e.zip | |
Convert std::os to istrs. Issue #855
Diffstat (limited to 'src/test/stdtest')
| -rw-r--r-- | src/test/stdtest/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/stdtest/path.rs b/src/test/stdtest/path.rs index 147e9b29eec..82fe54413d9 100644 --- a/src/test/stdtest/path.rs +++ b/src/test/stdtest/path.rs @@ -10,7 +10,7 @@ import std::os; fn test() { assert (!fs::path_is_absolute(~"test-path")); - log "Current working directory: " + os::getcwd(); + log ~"Current working directory: " + os::getcwd(); log fs::make_absolute(~"test-path"); log fs::make_absolute(~"/usr/bin"); |
