Skip to content

Commit 662870e

Browse files
committed
Accidently flipped the order
1 parent 74dd8e6 commit 662870e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/RegexBenchmark/BenchmarkResults.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ struct SuiteResult {
188188
for item in results {
189189
if let otherVal = other.results[item.key] {
190190
comparisons.append(
191-
.init(name: item.key, baseline: item.value, latest: otherVal))
191+
.init(name: item.key, baseline: otherVal, latest: item.value))
192192
}
193193
}
194194
return comparisons
@@ -213,7 +213,7 @@ struct SuiteResult {
213213
for item in results {
214214
if let otherVal = other.results[item.key] {
215215
comparisons.append(
216-
.init(name: item.key, baseline: item.value, latest: otherVal, diffCompileTimes: true))
216+
.init(name: item.key, baseline: otherVal, latest: item.value, diffCompileTimes: true))
217217
}
218218
}
219219
return comparisons

0 commit comments

Comments
 (0)