Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test path
  • Loading branch information
ShaharNaveh committed Nov 15, 2025
commit 6e4e9b87a8ede2e487f4e66a52f03548a7ad4b32
4 changes: 3 additions & 1 deletion crates/vm/src/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,9 @@ fn test_nested_frozen() {

vm::Interpreter::with_init(Default::default(), |vm| {
// vm.add_native_modules(rustpython_stdlib::get_module_inits());
vm.add_frozen(rustpython_vm::py_freeze!(dir = "../extra_tests/snippets"));
vm.add_frozen(rustpython_vm::py_freeze!(
dir = "../../extra_tests/snippets"
));
})
.enter(|vm| {
let scope = vm.new_scope_with_builtins();
Expand Down
Loading