Skip to content

Commit

Permalink
Fixed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident committed Oct 15, 2019
1 parent 3628056 commit 46c7030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/SurgeBenchmarkTests/ArithmeticTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ class ArithmeticTests: XCTestCase {
func test_mod_in_place_array_array_float() {
measure_inout_array_array(of: Float.self) { measure in
measureMetrics([.wallClockTime], automaticallyStartMeasuring: false) {
measure(Surge.modInPlace)
measure(Surge.elmodInPlace)
}
}
}

func test_mod_in_place_array_array_double() {
measure_inout_array_array(of: Double.self) { measure in
measureMetrics([.wallClockTime], automaticallyStartMeasuring: false) {
measure(Surge.modInPlace)
measure(Surge.elmodInPlace)
}
}
}
Expand Down

0 comments on commit 46c7030

Please sign in to comment.