Skip to content

Commit

Permalink
Fixed CGRect test init
Browse files Browse the repository at this point in the history
  • Loading branch information
Esqarrouth committed Aug 25, 2016
1 parent 04803ee commit 6a5d990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EZSwiftExtensionsTests/CGRectTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import XCTest
class CGRectTests: XCTestCase {

func testInit() {
let cg = CGRect(x: 55, y: 66, width: 77, height: 88)
let cg = CGRect(x: 55, y: 66, w: 77, h: 88)
XCTAssertEqual(cg.origin.x, 55)
XCTAssertEqual(cg.origin.y, 66)
XCTAssertEqual(cg.width, 77)
Expand Down

0 comments on commit 6a5d990

Please sign in to comment.