-
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.
Signed-off-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
d72b69c
commit eddc9ee
Showing
7 changed files
with
16 additions
and
11 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
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 |
---|---|---|
|
@@ -42,7 +42,7 @@ class PlatformIdTest extends Specification { | |
|
||
def 'should create form a container request' () { | ||
when: | ||
def id = PlatformId.of(new User(id:1), new SubmitContainerTokenRequest( | ||
def id = PlatformId.of(new User(id:1, email: '[email protected]'), new SubmitContainerTokenRequest( | ||
towerWorkspaceId: 100, | ||
towerEndpoint: 'http://foo.com', | ||
towerAccessToken: 'token-123', | ||
|
@@ -53,6 +53,7 @@ class PlatformIdTest extends Specification { | |
id.workspaceId == 100 | ||
id.towerEndpoint == 'http://foo.com' | ||
id.accessToken == 'token-123' | ||
id.userEmail == '[email protected]' | ||
} | ||
|
||
def 'should create form a inspect request' () { | ||
|