Skip to content

Commit

Permalink
#3032 Update tests for new lastUpdated functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Jan 7, 2025
1 parent 9a52c9e commit 7c55ec8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class VariousEndpointsAndSkillReuseSpec extends CatalogIntSpec {
subj1Users.data.totalPoints.sort() == [100, 200, 200].sort()

subj2Users.data.userId.sort() == [users[0], users[1], users[2]].sort()
subj2Users.data.lastUpdated.sort() == [DTF.print(dates[4].time), DTF.print(dates[1].time), DTF.print(dates[3].time)].sort()
subj2Users.data.lastUpdated.sort() == [null, null, null]
subj2Users.data.totalPoints.sort() == [100, 200, 200].sort()

projectUsers.data.userId.sort() == [users[0], users[1], users[2]].sort()
Expand Down Expand Up @@ -275,7 +275,7 @@ class VariousEndpointsAndSkillReuseSpec extends CatalogIntSpec {
subj1Users.data.totalPoints.sort() == [100, 200, 200].sort()

subj2Users.data.userId.sort() == [users[0], users[1], users[2]].sort()
subj2Users.data.lastUpdated.sort() == [DTF.print(dates[4].time), DTF.print(dates[1].time), DTF.print(dates[3].time)].sort()
subj2Users.data.lastUpdated.sort() == [null, null, null].sort()
subj2Users.data.totalPoints.sort() == [100, 200, 200].sort()

projectUsers.data.userId.sort() == [users[0], users[1], users[2]].sort()
Expand Down

0 comments on commit 7c55ec8

Please sign in to comment.