Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tascape committed Apr 3, 2016
1 parent 63cd732 commit 06178cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@
<version>5.1.38</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.core</artifactId>
<version>0.7.6.201602180812</version>
<type>jar</type>
</dependency>
</dependencies>

<description>Testharness - Test Automation Framework</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/tascape/qa/th/driver/TestDriver.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2015.
* Copyright 2016 tascape.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/tascape/qa/th/libx/DefaultExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class DefaultExecutor extends org.apache.commons.exec.DefaultExecutor {
*
* @return the thread
*/
@Override
protected Thread createThread(final Runnable runnable, final String name) {
return new Thread(runnable, Thread.currentThread().getName() + "-exec");
}
Expand Down

0 comments on commit 06178cd

Please sign in to comment.