fix(style): appease cargo fmt

master
Ashley Williams 7 years ago
parent 8a0d60d050
commit e706a41632
  1. 5
      tests/wasm-pack.rs

@ -11,7 +11,10 @@ fn it_gets_the_crate_name_default_path() {
#[test]
fn it_gets_the_crate_name_provided_path() {
assert!(wasm_pack::get_crate_name("./examples/js-hello-world").is_ok());
assert_eq!(wasm_pack::get_crate_name("./examples/js-hello-world").unwrap(), "js-hello-world");
assert_eq!(
wasm_pack::get_crate_name("./examples/js-hello-world").unwrap(),
"js-hello-world"
);
}
#[test]

Loading…
Cancel
Save