Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
57bef2d3
Commit
57bef2d3
authored
Oct 30, 2020
by
Tiger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix flaky timestamp comparison in terraform/states_spec.rb
parent
033e05b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/requests/api/graphql/project/terraform/states_spec.rb
spec/requests/api/graphql/project/terraform/states_spec.rb
+2
-2
No files found.
spec/requests/api/graphql/project/terraform/states_spec.rb
View file @
57bef2d3
...
...
@@ -58,8 +58,8 @@ RSpec.describe 'query terraform states' do
expect
(
state
.
dig
(
'lockedByUser'
,
'id'
)).
to
eq
(
terraform_state
.
locked_by_user
.
to_global_id
.
to_s
)
expect
(
version
[
'id'
]).
to
eq
(
latest_version
.
to_global_id
.
to_s
)
expect
(
version
[
'createdAt'
]).
to
eq
(
terraform_state
.
created_at
.
iso8601
)
expect
(
version
[
'updatedAt'
]).
to
eq
(
terraform_state
.
updated_at
.
iso8601
)
expect
(
version
[
'createdAt'
]).
to
eq
(
latest_version
.
created_at
.
iso8601
)
expect
(
version
[
'updatedAt'
]).
to
eq
(
latest_version
.
updated_at
.
iso8601
)
expect
(
version
.
dig
(
'createdByUser'
,
'id'
)).
to
eq
(
latest_version
.
created_by_user
.
to_global_id
.
to_s
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment