Skip to content

Commit

Permalink
fix order of submissions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr0nox committed Apr 22, 2024
1 parent 3c2547c commit a14d2e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions report-viewer/tests/e2e/OpenComparisonTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ const testSets: DataSet[] = [
},
{
datasetName: 'python-report.zip',
firstSubmissionName: '02.py',
secondSubmissionName: '01.py'
firstSubmissionName: '01.py',
secondSubmissionName: '02.py'
},
{
datasetName: 'cpp-report.zip',
firstSubmissionName: '02.cpp',
secondSubmissionName: '01.cpp'
firstSubmissionName: '01.cpp',
secondSubmissionName: '02.cpp'
},
{
datasetName: 'csharp-report.zip',
firstSubmissionName: '02.cs',
secondSubmissionName: '01.cs'
firstSubmissionName: '01.cs',
secondSubmissionName: '02.cs'
}
]

Expand Down

0 comments on commit a14d2e1

Please sign in to comment.