diff --git a/.travis.yml b/.travis.yml index f9a7435be..a024f24cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: objective-c -osx_image: xcode8 +osx_image: xcode7.3 before_install: - gem install github-markdown xcpretty-travis-formatter before_script: diff --git a/LuaSkin/LuaSkinTests/LuaSkinTests.m b/LuaSkin/LuaSkinTests/LuaSkinTests.m index a39b1887e..bc1c02785 100644 --- a/LuaSkin/LuaSkinTests/LuaSkinTests.m +++ b/LuaSkin/LuaSkinTests/LuaSkinTests.m @@ -147,7 +147,6 @@ - (void)setUp { // Find where our bundle is on disk NSDictionary *environment = [NSProcessInfo processInfo].environment; - NSLog(@"Environment: %@", environment); NSString *xcTestConfigurationFilePath = environment[@"XCTestConfigurationFilePath"]; NSRange chopPoint = [xcTestConfigurationFilePath rangeOfString:@"LuaSkinTests.xctest/Contents/Resources/"]; @@ -164,10 +163,6 @@ - (void)setUp { // Now find lsunit.lua within the bundle. It will end by require()ing our init.lua NSString *lsUnitPath = [NSString stringWithFormat:@"%@/lsunit.lua", bundlePath]; - NSString *travisDebugNonsense = [NSString stringWithFormat:@"ENV: %@ PATH: %@", environment, bundlePath]; - NSException *debugException = [NSException exceptionWithName:@"LOLDEBUG" reason:travisDebugNonsense userInfo:nil]; - @throw debugException; - // Prepare a refTable lua_newtable(self.skin.L); self.refTable = luaL_ref(self.skin.L, LUA_REGISTRYINDEX);