Skip to content

Commit 72e1373

Browse files
committed
Fix path missed in #200
1 parent 0b5ddb6 commit 72e1373

File tree

1 file changed

+2
-2
lines changed
  • crates/spirv-builder/src/test

1 file changed

+2
-2
lines changed

crates/spirv-builder/src/test/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ edition = "2018"
4343
crate-type = ["dylib"]
4444
4545
[dependencies]
46-
spirv-std = { path = "../../spirv-std" }
46+
spirv-std = { path = "../../crates/spirv-std" }
4747
4848
[workspace]
4949
"#;
@@ -60,7 +60,7 @@ fn panic(_: &PanicInfo) -> ! {
6060
"#;
6161

6262
fn setup(src: &str) -> Result<PathBuf, Box<dyn Error>> {
63-
let project = Path::new("../target/test-spirv").to_owned();
63+
let project = Path::new("../../target/test-spirv").to_owned();
6464
let cargo_toml = project.join("Cargo.toml");
6565
let lib_rs = project.join("src/lib.rs");
6666
std::fs::create_dir_all(lib_rs.parent().unwrap())?;

0 commit comments

Comments
 (0)