Skip to content

Commit

Permalink
clarify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Apr 2, 2024
1 parent c1c8827 commit 4152af5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Branch-TestBed/Branch-SDK-Tests/BranchLoggerTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ - (void)testLogLevel_DebugByDefault {
[logger logDebug:@"msg" error:nil];
XCTAssertTrue(count == 3);

// this should be ignored
// this should be ignored and the counter not incremented
[logger logVerbose:@"msg" error:nil];
XCTAssertTrue(count == 3);
}
Expand All @@ -130,7 +130,7 @@ - (void)testLogLevel_Error {
[logger logError:@"msg" error:nil];
XCTAssertTrue(count == 1);

// this should be ignored
// these should be ignored and the counter not incremented
[logger logWarning:@"msg" error:nil];
XCTAssertTrue(count == 1);
[logger logDebug:@"msg" error:nil];
Expand All @@ -155,7 +155,7 @@ - (void)testLogLevel_Warning {
[logger logWarning:@"msg" error:nil];
XCTAssertTrue(count == 2);

// this should be ignored
// this should be ignored and the counter not incremented
[logger logDebug:@"msg" error:nil];
XCTAssertTrue(count == 2);
[logger logVerbose:@"msg" error:nil];
Expand Down

0 comments on commit 4152af5

Please sign in to comment.