Skip to content

Commit 60cb249

Browse files
committed
Update hash
1 parent 017a9ab commit 60cb249

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/vm-derive-impl/src/hash_function.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use quote::quote;
88

99
use super::{bail, maybe};
1010

11-
// i do what i must because i can
11+
// i do what i must because i can <https://youtu.be/Y6ljFaKRTrI?t=27>
1212
fn format_code<C>(code: C) -> String
1313
where
1414
C: AsRef<[u8]>,
@@ -25,6 +25,7 @@ where
2525
}
2626

2727
let output = child.wait_with_output().unwrap();
28+
assert!(output.status.success());
2829
String::from_utf8(output.stdout).unwrap()
2930
}
3031

packages/vm/src/modules/file_system_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ mod tests {
418418
let discriminator = raw_module_version_discriminator();
419419
assert_eq!(
420420
discriminator,
421-
"bc465b26592e04a988baf4eb5358065904ecfff3f8f3fa9d417d137dacb4a20d"
421+
"ddae2ae211962fc3481ff11cd46413750c692ddeb3d65f3e7a8a6d31ab1f8511"
422422
);
423423
}
424424
}

0 commit comments

Comments
 (0)