We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de69dc1 commit 6e4e9b8Copy full SHA for 6e4e9b8
crates/vm/src/vm/mod.rs
@@ -1036,7 +1036,9 @@ fn test_nested_frozen() {
1036
1037
vm::Interpreter::with_init(Default::default(), |vm| {
1038
// vm.add_native_modules(rustpython_stdlib::get_module_inits());
1039
- vm.add_frozen(rustpython_vm::py_freeze!(dir = "../extra_tests/snippets"));
+ vm.add_frozen(rustpython_vm::py_freeze!(
1040
+ dir = "../../extra_tests/snippets"
1041
+ ));
1042
})
1043
.enter(|vm| {
1044
let scope = vm.new_scope_with_builtins();
0 commit comments