Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
malikchaya2 committed Jun 27, 2022
1 parent cc188db commit 2cdced5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rest/data/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func TestCreateVersionFromConfig(t *testing.T) {
assert.Equal("my message", newVersion.Message)
assert.Equal(evergreen.VersionCreated, newVersion.Status)
assert.Equal(ref.Id, newVersion.Identifier)
assert.Equal(6, newVersion.RevisionOrderNumber)
assert.Equal(1, newVersion.RevisionOrderNumber)
assert.Equal(evergreen.AdHocRequester, newVersion.Requester)
assert.Empty(newVersion.Config)

Expand Down Expand Up @@ -358,7 +358,7 @@ tasks:
assert.Equal("message 2", newVersion.Message)
assert.Equal(evergreen.VersionCreated, newVersion.Status)
assert.Equal(ref.Id, newVersion.Identifier)
assert.Equal(7, newVersion.RevisionOrderNumber)
assert.Equal(2, newVersion.RevisionOrderNumber)
assert.Equal(evergreen.AdHocRequester, newVersion.Requester)
assert.Empty(newVersion.Config)

Expand Down

0 comments on commit 2cdced5

Please sign in to comment.