-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
90 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:8u121 | ||
FROM openjdk:11 | ||
|
||
RUN mkdir /static/public -p | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val workflowRun = WorkflowRun( | ||
"Interim report", | ||
|
@@ -207,7 +207,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -239,7 +239,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -311,7 +311,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
insertUser("[email protected]", "user.name") | ||
insertUser("[email protected]", "user2.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -355,7 +355,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
insertUser("[email protected]", "user.name") | ||
insertUser("[email protected]", "user2.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -398,7 +398,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -441,7 +441,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
sut.addWorkflowRun( | ||
|
@@ -484,7 +484,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
|
||
|
@@ -525,7 +525,7 @@ class WorkflowRunRepositoryTests : CleanDatabaseTests() | |
{ | ||
insertUser("[email protected]", "user.name") | ||
|
||
val now = Instant.now() | ||
val now = Instant.ofEpochMilli(1655378424228) | ||
|
||
val sut = OrderlyWebWorkflowRunRepository() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,7 +100,7 @@ class WorkflowRunTests : IntegrationTest() | |
val name = "Interim report" | ||
val key = "adventurous_aardvark" | ||
val email = "[email protected]" | ||
val date = Instant.now() | ||
val date = Instant.ofEpochMilli(1655378424228) | ||
val runWorkflowReport = listOf( | ||
WorkflowRunReport( | ||
"adventurous_aardvark", | ||
|
Oops, something went wrong.