From 6b281feb05cb262bae35369b31fc8ccc2918e6b6 Mon Sep 17 00:00:00 2001 From: abdel-17 Date: Tue, 16 Jan 2024 01:04:39 +0200 Subject: [PATCH] style: run SwiftFormat --- Tests/RationalModuleTests/RationalTests.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/RationalModuleTests/RationalTests.swift b/Tests/RationalModuleTests/RationalTests.swift index 770b481..12e412c 100644 --- a/Tests/RationalModuleTests/RationalTests.swift +++ b/Tests/RationalModuleTests/RationalTests.swift @@ -139,12 +139,12 @@ final class RationalTests: XCTestCase { (Rational(-1, 7), -1), (Rational(-0, 7), 0), ] - + for (rational, expected) in testCases { XCTAssertEqual(rational.signum(), expected) } } - + func test_signum_int16() { let testCases: [(Rational, Int16)] = [ (Rational(1, 4), 1), @@ -152,12 +152,12 @@ final class RationalTests: XCTestCase { (Rational(-1, 7), -1), (Rational(-0, 7), 0), ] - + for (rational, expected) in testCases { XCTAssertEqual(rational.signum(), expected) } } - + func test_signum_int32() { let testCases: [(Rational, Int32)] = [ (Rational(1, 4), 1), @@ -165,12 +165,12 @@ final class RationalTests: XCTestCase { (Rational(-1, 7), -1), (Rational(-0, 7), 0), ] - + for (rational, expected) in testCases { XCTAssertEqual(rational.signum(), expected) } } - + func test_signum_int64() { let testCases: [(Rational, Int)] = [ (Rational(1, 4), 1),