Browse Source

Fixed line length issue

Zach Mullen 16 years ago
parent
commit
387ba0c646
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/CTest/cmCTestRunTest.cxx

+ 2 - 1
Source/CTest/cmCTestRunTest.cxx

@@ -391,7 +391,8 @@ bool cmCTestRunTest::CreateProcess(double testTimeOut,
 {
   this->TestProcess = new cmProcess;
   this->TestProcess->SetId(this->Index);
-  this->TestProcess->SetWorkingDirectory(this->TestProperties->Directory.c_str());
+  this->TestProcess->SetWorkingDirectory(
+        this->TestProperties->Directory.c_str());
   this->TestProcess->SetCommand(this->ActualCommand.c_str());
   this->TestProcess->SetCommandArguments(this->Arguments);