Skip to content

Commit 71f9ab2

Browse files
committed
remove prints from test
1 parent 954bcc8 commit 71f9ab2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integration/pydantic/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ def _inner(code_text: str, module_name: Optional[str] = None) -> ModuleType:
2222

2323
with open(os.path.join(current_path, f"{module_name}.py"), "w+") as f:
2424
f.write(code_text)
25-
print(current_path, "current_path")
26-
print(package, "package")
25+
2726
module = importlib.import_module(f"{package}.{module_name}")
2827

2928
return module

0 commit comments

Comments
 (0)