diff --git a/Branch-TestBed/Branch-SDK-Tests/BranchLoggerTests.m b/Branch-TestBed/Branch-SDK-Tests/BranchLoggerTests.m index 94badb12d..1a4be3490 100644 --- a/Branch-TestBed/Branch-SDK-Tests/BranchLoggerTests.m +++ b/Branch-TestBed/Branch-SDK-Tests/BranchLoggerTests.m @@ -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); } @@ -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]; @@ -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];