Fix tests

This commit is contained in:
Pedro Piñera 2020-02-27 19:11:49 +01:00
parent a25861b0a5
commit 1218c461d4
1 changed files with 1 additions and 2 deletions

View File

@ -41,9 +41,8 @@ final class XcodeBuildControllerTests: TuistUnitTestCase {
let shouldOutputBeColoured = true
environment.shouldOutputBeColoured = shouldOutputBeColoured
var command = ["/usr/bin/xcrun", "xcodebuild", "-scheme", scheme]
var command = ["/usr/bin/xcrun", "xcodebuild", "clean", "build", "-scheme", scheme]
command.append(contentsOf: target.xcodebuildArguments)
command.append(contentsOf: ["clean", "build"])
system.succeedCommand(command, output: "output")
var parseCalls: [(String, Bool)] = []