From 90d5d25f478633a8651f71b0226f6b03ff3ecdef Mon Sep 17 00:00:00 2001 From: Slamet Kristanto Date: Sun, 5 Jun 2022 18:05:53 +0900 Subject: [PATCH] Update helper.rb --- lib/trailblazer/test/operation/helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/trailblazer/test/operation/helper.rb b/lib/trailblazer/test/operation/helper.rb index 0fbbd2d..79a7fc6 100644 --- a/lib/trailblazer/test/operation/helper.rb +++ b/lib/trailblazer/test/operation/helper.rb @@ -1,11 +1,11 @@ module Trailblazer::Test::Operation module Helper def call(operation_class, **args, &block) - call!(operation_class, args, &block) + call!(operation_class, **args, &block) end def factory(operation_class, **args, &block) - call!(operation_class, args.merge(raise_on_failure: true), &block) + call!(operation_class, **args.merge(raise_on_failure: true), &block) end def mock_step(operation_class, id:, subprocess: nil, subprocess_path: nil)