From 8f5e9850d36ee1be06f06b7727865166bca01322 Mon Sep 17 00:00:00 2001 From: Carlos Date: Sat, 3 Aug 2024 21:07:26 +0100 Subject: [PATCH] Added new param when using encode --- spec/kotlin_code_generator_spec.rb | 2 ++ spec/models/template_arguments_spec.rb | 2 ++ spec/swift_code_generator_spec.rb | 2 ++ 3 files changed, 6 insertions(+) diff --git a/spec/kotlin_code_generator_spec.rb b/spec/kotlin_code_generator_spec.rb index 3c22cae..e28cdda 100644 --- a/spec/kotlin_code_generator_spec.rb +++ b/spec/kotlin_code_generator_spec.rb @@ -9,6 +9,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end @@ -18,6 +19,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end diff --git a/spec/models/template_arguments_spec.rb b/spec/models/template_arguments_spec.rb index e54916a..61ec2bd 100644 --- a/spec/models/template_arguments_spec.rb +++ b/spec/models/template_arguments_spec.rb @@ -18,6 +18,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end @@ -27,6 +28,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end diff --git a/spec/swift_code_generator_spec.rb b/spec/swift_code_generator_spec.rb index d4f6d74..b96d00e 100644 --- a/spec/swift_code_generator_spec.rb +++ b/spec/swift_code_generator_spec.rb @@ -9,6 +9,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end @@ -18,6 +19,7 @@ salt: salt, current_flavor: config.current_flavor, environments: config.environments, + should_infer_types: config.should_infer_types, ) end