From f182b50c1197fcc61094abb711ee12c37f06fb86 Mon Sep 17 00:00:00 2001 From: Adrian Lopez Date: Fri, 19 Nov 2021 11:50:03 +0100 Subject: [PATCH] Addapt test 10 example to py3 and add forget ident --- tests/10_advanced_params-ception_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/10_advanced_params-ception_test.py b/tests/10_advanced_params-ception_test.py index 4db2f3a5..c93fa55e 100644 --- a/tests/10_advanced_params-ception_test.py +++ b/tests/10_advanced_params-ception_test.py @@ -18,8 +18,8 @@ def coordinates_fixture(request, numbers_fixture): yield coordinate # # Uncomment for fun 80s board game reference (and fixture filtering) # if coordinate == 'b2': - # print "(Don't sink my Battleship!)" - # pytest.skip() + # print("(Don't sink my Battleship!)") + # pytest.skip() def test_advanced_fixtureception(coordinates_fixture):