From f0dee10a0d0e5372a733a132a39e103e8e869d9f Mon Sep 17 00:00:00 2001 From: thou Date: Wed, 21 Jun 2017 12:11:38 -0500 Subject: [PATCH] Fix failing test since spawn.out does not contain "LOOPONFAILING" in pytest >= 3 --- testing/test_looponfail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_looponfail.py b/testing/test_looponfail.py index cad56c3..6c714fd 100644 --- a/testing/test_looponfail.py +++ b/testing/test_looponfail.py @@ -268,7 +268,7 @@ class TestFunctional: """) child = testdir.spawn_pytest("-f %s" % p) child.expect("1 xpass") - child.expect("### LOOPONFAILING ####") + # child.expect("### LOOPONFAILING ####") child.expect("waiting for changes") child.kill(15)