From 08bbde873eb505e2bf7ad2feadf6348864b4cf0e Mon Sep 17 00:00:00 2001 From: Dan Hudlow Date: Mon, 25 Aug 2025 17:29:46 -0500 Subject: [PATCH] Fix case mismatch in behave step --- features/steps/cli_binding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/cli_binding.py b/features/steps/cli_binding.py index 6b7fbe3..fc2b456 100644 --- a/features/steps/cli_binding.py +++ b/features/steps/cli_binding.py @@ -34,7 +34,7 @@ from behave import * -@given(u'JSON Document \'{json}\'') +@given(u'JSON document \'{json}\'') def step_impl(context, json): context.data['json'].append(json)