From e792768340467cd281a1921326ceca540a76f15b Mon Sep 17 00:00:00 2001 From: emanuel-schmid Date: Wed, 20 Sep 2023 11:55:20 +0200 Subject: [PATCH] test_notebooks: fix broken cell filter --- script/jenkins/test_notebooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/jenkins/test_notebooks.py b/script/jenkins/test_notebooks.py index 870aff386..bb0420194 100644 --- a/script/jenkins/test_notebooks.py +++ b/script/jenkins/test_notebooks.py @@ -92,7 +92,7 @@ def test_notebook(self): and not ln.startswith('ask_ok(') and not ln.startswith('pool') # by convention Pool objects are called pool and not ln.strip().endswith('?') - and re.search(r'(\W|^)Pool\(', ln) # prevent Pool object creation + and not re.search(r'(\W|^)Pool\(', ln) # prevent Pool object creation ]) # execute the python code