Fixed name misnamed test functions

This commit is contained in:
Vincent Esche 2019-10-03 16:02:05 +02:00
parent ba7acd70a7
commit 8fdbdf5cbf
1 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@ class ArithmeticTests: XCTestCase {
// MARK: - Square Root: In Place
func test_sqrt_in_place_array_array_float() {
func test_sqrt_in_place_array_float() {
typealias Scalar = Float
let lhs: [Scalar] = .monotonicNormalized()
@ -363,7 +363,7 @@ class ArithmeticTests: XCTestCase {
XCTAssertEqual(actual, expected, accuracy: 1e-8)
}
func test_sqrt_in_place_array_array_double() {
func test_sqrt_in_place_array_double() {
typealias Scalar = Double
let lhs: [Scalar] = .monotonicNormalized()