test: harden manifest leakage checks

This commit is contained in:
lda
2026-08-03 08:43:53 +07:00 Verified
parent 231e023a3c
commit e440ed7dee
+2 -2
View File
@@ -134,8 +134,8 @@ def test_generated_contract_contains_no_temporary_or_transport_state() -> None:
assert not any("TemporaryDirectory" in value for value in strings)
assert not any("\\Temp\\" in value for value in strings)
assert "127.0.0.1" not in strings
assert "/rpc" not in strings
assert not any("127.0.0.1" in value for value in strings)
assert not any("/rpc" in value for value in strings)
def test_generated_required_properties_are_declared() -> None: