Skip to content

Commit

Permalink
refactor(e2e): rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
euberdeveloper authored Sep 4, 2024
1 parent 39110d0 commit dc09aba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions report-viewer/tests/e2e/OpenComparisonTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface DataSet {
secondSubmissionName: string
}

const regexpPathSeparator = '(\\\\|\\/)';
const regexPathSeparator = '(\\\\|\\/)';

const testSets: DataSet[] = [
{
Expand Down Expand Up @@ -43,13 +43,13 @@ const testSets: DataSet[] = [
},
{
datasetName: 'singleNewSubmission-report.zip',
firstSubmissionName: `2023${regexpPathSeparator}QSort2023.java`,
secondSubmissionName: `2022${regexpPathSeparator}QSort2022.java`,
firstSubmissionName: `2023${regexPathSeparator}QSort2023.java`,
secondSubmissionName: `2022${regexPathSeparator}QSort2022.java`,
},
{
datasetName: 'submissionsWithSameName-report.zip',
firstSubmissionName: `2023${regexpPathSeparator}gr1`,
secondSubmissionName: `2023${regexpPathSeparator}gr2`
firstSubmissionName: `2023${regexPathSeparator}gr1`,
secondSubmissionName: `2023${regexPathSeparator}gr2`
},
{
datasetName: 'python-report.zip',
Expand Down

0 comments on commit dc09aba

Please sign in to comment.