Skip to content

Commit

Permalink
fixup! Address Ran Rui's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
X-czh committed Aug 18, 2023
1 parent cb2c7dc commit dfe99a9
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -132,8 +132,9 @@ void testExceptionShouldContainRequiredConfigOptions() {
} catch (IllegalConfigurationException e) {
options.getRequiredFineGrainedOptions()
.forEach(option -> assertThat(e).hasMessageContaining(option.key()));
assertThat(e).hasMessageContaining(options.getTotalFlinkMemoryOption().key());
assertThat(e).hasMessageContaining(options.getTotalProcessMemoryOption().key());
assertThat(e)
.hasMessageContaining(options.getTotalFlinkMemoryOption().key())
.hasMessageContaining(options.getTotalProcessMemoryOption().key());
}
}

Expand Down

0 comments on commit dfe99a9

Please sign in to comment.