-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanups and fixes #3178
Cleanups and fixes #3178
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3178 +/- ##
=========================================
Coverage 71.18% 71.18%
Complexity 2331 2331
=========================================
Files 279 279
Lines 9846 9846
Branches 990 990
=========================================
Hits 7009 7009
Misses 2491 2491
Partials 346 346 Continue to review full report at Codecov.
|
...rc/integration-test/java/com/google/cloud/tools/jib/maven/BuildImageMojoIntegrationTest.java
Show resolved
Hide resolved
...rc/integration-test/java/com/google/cloud/tools/jib/gradle/SingleProjectIntegrationTest.java
Show resolved
Hide resolved
jib-gradle-plugin/src/integration-test/java/com/google/cloud/tools/jib/gradle/JibRunHelper.java
Outdated
Show resolved
Hide resolved
@@ -189,7 +190,8 @@ static Instant getCreationTime(String imageReference) throws IOException, Interr | |||
return Instant.parse(inspect); | |||
} | |||
|
|||
static void assertImageDigestAndId(Path projectRoot) throws IOException, DigestException { | |||
static void assertValidImageDigestAndIdOutputFiles(Path projectRoot) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hm how about assertThatExpectedImageDigestAndIdReturned
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in #3179.
Just realized the assertion should have been
isGreaterThan
in #3176.