Skip to content

Commit 6b4386a

Browse files
committed
refactor: remove debug leftover
1 parent 6ddd5e7 commit 6b4386a

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

packages/polywrap-core/tests/test_build_clean_uri_history.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,4 @@ def expected() -> CleanResolutionStep:
4242
def test_build_clean_uri_history(
4343
history: list[UriResolutionStep], expected: CleanResolutionStep
4444
):
45-
print(build_clean_uri_history(history))
4645
assert build_clean_uri_history(history) == expected

packages/polywrap-uri-resolvers/tests/integration/aggregator_resolver/test_can_resolve.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ def test_can_resolve_last(client: PolywrapClient, resolution_context: UriResolut
1919

2020
result = client.try_resolve_uri(uri=uri, resolution_context=resolution_context)
2121

22-
print(build_clean_uri_history(resolution_context.get_history()))
23-
2422
from .histories.can_resolve_last import EXPECTED
2523
assert build_clean_uri_history(resolution_context.get_history()) == EXPECTED
2624

packages/polywrap-uri-resolvers/tests/integration/extension_resolver/test_can_resolve_package_with_subinvoke.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,5 @@ def test_can_resolve_package_with_plugin_extension(client: PolywrapClient) -> No
5959
)
6060

6161
from .histories.can_resolve_package_with_subinvoke import EXPECTED
62-
print(build_clean_uri_history(resolution_context.get_history()))
6362
assert isinstance(result, UriPackage), "Expected a UriPackage result."
6463
assert build_clean_uri_history(resolution_context.get_history()) == EXPECTED

packages/polywrap-wasm/polywrap_wasm/wasm_wrapper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ def invoke(
157157
instance = self.create_wasm_instance(store, state, client)
158158

159159
exports = WrapExports(instance, store)
160-
print("env length", env_length)
161160
result = exports.__wrap_invoke__(method_length, args_length, env_length)
162161

163162
if result and state.invoke_result and state.invoke_result.result:

0 commit comments

Comments
 (0)