Skip to content

Commit

Permalink
Simplify variable name from configuration to config
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Oct 25, 2023
1 parent ce236d9 commit aa4bd31
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class YamlTracingConfigurationConverterTest {

@Test
void assertConvertTracingConfiguration() {
JobEventCaller expectedStorage = () -> { };
JobEventCaller expectedStorage = () -> {
};
TracingConfiguration<JobEventCaller> tracingConfig = new TracingConfiguration<>("TEST", expectedStorage);
YamlTracingConfigurationConverter<JobEventCaller> converter = new YamlTracingConfigurationConverter<>();
YamlTracingConfiguration<JobEventCaller> actual = converter.convertToYamlConfiguration(tracingConfig);
Expand Down

0 comments on commit aa4bd31

Please sign in to comment.