summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-04-08 17:05:06 -0400
committerJoel Fischer <joeljfischer@gmail.com>2019-04-08 17:05:06 -0400
commit8a53be9f1b2d910577d4ed9e315cb79980012d8f (patch)
tree981187df5a4f26dbb8675bb8140040d8b95ec85c
parent4b65026202506406957e2250c5747e514612f029 (diff)
downloadsdl_ios-8a53be9f1b2d910577d4ed9e315cb79980012d8f.tar.gz
Update tests
-rw-r--r--SmartDeviceLinkTests/LoggingSpecs/SDLLogConfigurationSpec.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/LoggingSpecs/SDLLogConfigurationSpec.m b/SmartDeviceLinkTests/LoggingSpecs/SDLLogConfigurationSpec.m
index 21fd0ffcc..d434f1269 100644
--- a/SmartDeviceLinkTests/LoggingSpecs/SDLLogConfigurationSpec.m
+++ b/SmartDeviceLinkTests/LoggingSpecs/SDLLogConfigurationSpec.m
@@ -20,6 +20,7 @@ describe(@"a log configuration", ^{
expect(@(testConfiguration.formatType)).to(equal(@(SDLLogFormatTypeDefault)));
expect(@(testConfiguration.asynchronous)).to(equal(@YES));
expect(@(testConfiguration.errorsAsynchronous)).to(equal(@NO));
+ expect(@(testConfiguration.areAssertionsDisabled)).to(equal(@NO));
expect(@(testConfiguration.globalLogLevel)).to(equal(@(SDLLogLevelError)));
if ([NSProcessInfo processInfo].operatingSystemVersion.majorVersion >= 10) {
@@ -40,6 +41,7 @@ describe(@"a log configuration", ^{
expect(@(testConfiguration.formatType)).to(equal(@(SDLLogFormatTypeDetailed)));
expect(@(testConfiguration.asynchronous)).to(equal(@YES));
expect(@(testConfiguration.errorsAsynchronous)).to(equal(@NO));
+ expect(@(testConfiguration.areAssertionsDisabled)).to(equal(@NO));
expect(@(testConfiguration.globalLogLevel)).to(equal(@(SDLLogLevelDebug)));
if ([NSProcessInfo processInfo].operatingSystemVersion.majorVersion >= 10) {