Fix test: StoreId does not start with "/" anymore

This commit is contained in:
Matthias Beyer 2016-03-10 19:12:00 +01:00
parent a3a09ff4ee
commit 6d7065d10e

View file

@ -99,8 +99,7 @@ mod test {
fn correct_path() {
let p = module_path::ModuleEntryPath::new("test");
assert_eq!(p.into_storeid().to_str().unwrap(),
"/test/test~0.2.0-alpha+leet1337");
assert_eq!(p.into_storeid().to_str().unwrap(), "test/test~0.2.0-alpha+leet1337");
}
}