Update conftest.py

This commit is contained in:
Ayaz Salikhov
2022-01-22 12:10:49 +02:00
committed by GitHub
parent d4bcbfc2ca
commit 3b142c8321

View File

@@ -109,7 +109,7 @@ class TrackedContainer:
@staticmethod
def get_warnings(logs: str) -> list[str]:
return [l for in logs.split("\n") if l.startswith("WARNING")]
return [l for l in logs.split("\n") if l.startswith("WARNING")]
@staticmethod
def get_errrors(logs: str) -> list[str]: