diff --git a/src/icpp/version.py b/src/icpp/version.py index 7207007..36b047c 100644 --- a/src/icpp/version.py +++ b/src/icpp/version.py @@ -10,4 +10,4 @@ https://packaging.python.org/guides/single-sourcing-package-version/ """ -__version__ = "4.1.0" +__version__ = "4.2.0" diff --git a/test/canisters/canister_hooks/test/test_apis.py b/test/canisters/canister_hooks/test/test_apis.py index 4967f88..f00ab1d 100644 --- a/test/canisters/canister_hooks/test/test_apis.py +++ b/test/canisters/canister_hooks/test/test_apis.py @@ -32,5 +32,5 @@ def test__greet(network: str, principal: str) -> None: assert response == expected_response # This proves that the post_wasm_function was called - opt_wasm_file_path = Path("build/my_canister_before_opt.wasm") + opt_wasm_file_path = Path("build/my_canister_before_opt.wasm").resolve() assert opt_wasm_file_path.exists()