Skip to content

Commit

Permalink
Fix PlatformPropertiesTests
Browse files Browse the repository at this point in the history
  • Loading branch information
corneil committed Oct 24, 2023
1 parent e2652f9 commit 1e58f2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class PlatformPropertiesTests {
@Test
public void deserializationTest() {
Map<String, LocalDeployerProperties> localAccounts = this.localPlatformProperties.getAccounts();
assertThat(localAccounts).containsOnlyKeys("default", "localDev", "localDevDebug");
assertThat(localAccounts).containsOnlyKeys("localDev", "localDevDebug");
assertThat(localAccounts.get("localDev").getShutdownTimeout()).isEqualTo(60);
assertThat(localAccounts.get("localDevDebug").getJavaOpts()).isEqualTo("-Xdebug");
}
Expand Down

0 comments on commit 1e58f2e

Please sign in to comment.