Skip to content

Commit

Permalink
Formatting has been applied
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill71 committed Mar 6, 2020
1 parent b5a028b commit 6e98f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTests/UnitTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class ColorUtilsTestSuite: XCTestCase {
func testConvertFromRgbaToHsl() {

let rgba = ColorRGBA(r: 47, g: 25, b: 123, a: 255)

let hsl = convertToHSL(rgba: rgba)

XCTAssertEqual(0.7040816326530613, hsl.h)
Expand All @@ -47,7 +48,6 @@ class ColorUtilsTestSuite: XCTestCase {
XCTAssertEqual(24, rgba.g)
XCTAssertEqual(123, rgba.b)
XCTAssertEqual(255, rgba.a)

}

}

0 comments on commit 6e98f7a

Please sign in to comment.