From 3b142c8321ce1e19aca963ef8d3ebf13bffc3b60 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 22 Jan 2022 12:10:49 +0200 Subject: [PATCH] Update conftest.py --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 6a326748..3efb5a29 100644 --- a/conftest.py +++ b/conftest.py @@ -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]: