Fix some assertions
See gh-25499
This commit is contained in:
committed by
Stephane Nicoll
parent
ae630e03ce
commit
89a44f3da4
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
* Copyright 2012-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -80,7 +80,7 @@ class BuildInfoIntegrationTests {
|
||||
Properties second = buildInfoProperties();
|
||||
String secondBuildTime = second.getProperty("build.time");
|
||||
assertThat(secondBuildTime).isNotNull();
|
||||
assertThat(Instant.parse(firstBuildTime).isBefore(Instant.parse(secondBuildTime)));
|
||||
assertThat(Instant.parse(firstBuildTime)).isBefore(Instant.parse(secondBuildTime));
|
||||
}
|
||||
|
||||
@TestTemplate
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
* Copyright 2012-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -61,7 +61,7 @@ public class BootBuildImageRegistryIntegrationTests {
|
||||
|
||||
@BeforeEach
|
||||
void setUp() {
|
||||
assertThat(registry.isRunning());
|
||||
assertThat(registry.isRunning()).isTrue();
|
||||
this.registryAddress = registry.getHost() + ":" + registry.getFirstMappedPort();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user