From c6c8f2c96eb90f1af6ff9115ce0136eb82389b5b Mon Sep 17 00:00:00 2001 From: Pete Fotheringham Date: Mon, 11 Nov 2013 18:22:56 +0000 Subject: Fix bug where yarn reports all yarns as having no THENS --- yarn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn b/yarn index f8ca0cd..c3cba28 100755 --- a/yarn +++ b/yarn @@ -198,7 +198,7 @@ class YarnRunner(cliapp.Application): if no_thens: raise cliapp.AppException( 'Some scenarios have no THENs:\n%s' % - ''.join(' "%s"\n' % s.name for s in scenarios)) + ''.join(' "%s"\n' % s.name for s in no_thens)) def connect_implementations(self, scenarios, implementations): for scenario in scenarios: -- cgit v1.2.1