Skip to content

Commit

Permalink
#3032 Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Jan 9, 2025
1 parent a08ee3d commit 569fcbc
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() == [null, null, null]
subj2Users.data.lastUpdated.sort() == [DTF.print(dates[4].time), DTF.print(dates[1].time), DTF.print(dates[3].time)].sort()
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() == [null, null, null].sort()
subj2Users.data.lastUpdated.sort() == [DTF.print(dates[4].time), DTF.print(dates[1].time), DTF.print(dates[3].time)].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 569fcbc

Please sign in to comment.