Skip to content

Commit

Permalink
fixed lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorcooper committed Jul 4, 2024
1 parent 8356f12 commit b9927eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/AmplitudeTests/Events/BaseEventTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ final class BaseEventTests: XCTestCase {
3.14
)
XCTAssertEqual(
Decimal(floatLiteral: baseEventDict!["event_properties"]!["decimal" as NSString] as! Double),
Decimal(floatLiteral: 3.14)
Decimal(baseEventDict!["event_properties"]!["decimal" as NSString] as! Double),
Decimal(3.14)
)
XCTAssertEqual(
baseEventDict!["event_properties"]!["string" as NSString] as! String,
Expand Down

0 comments on commit b9927eb

Please sign in to comment.