From c9b509a296f4247c6834b54348284ebbfdfc0f74 Mon Sep 17 00:00:00 2001 From: albertjan Date: Sun, 11 May 2014 11:21:09 +0200 Subject: [PATCH] correct func name --- tests/feature/test_cucumber_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/feature/test_cucumber_json.py b/tests/feature/test_cucumber_json.py index 1204399..2554807 100644 --- a/tests/feature/test_cucumber_json.py +++ b/tests/feature/test_cucumber_json.py @@ -31,7 +31,7 @@ def test_step_trace(testdir): return 'pass' @given('a failing step') - def a_passing_step(): + def a_failing_step(): raise Exception('Error') @scenario('test.feature', 'Passing')