summaryrefslogtreecommitdiffstats
path: root/uitest/src/com
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-10-30 07:03:51 +0000
committerVaadin Code Review <review@vaadin.com>2013-10-30 07:05:10 +0000
commit2a3890cf71e18decf19a6d5e99ee12eb2dd139a9 (patch)
tree90fe1ea3ce7fe4668dd875581ef185fed0a28c12 /uitest/src/com
parente413646588fe45fe930116210da882b82151f3f3 (diff)
downloadvaadin-framework-2a3890cf71e18decf19a6d5e99ee12eb2dd139a9.tar.gz
vaadin-framework-2a3890cf71e18decf19a6d5e99ee12eb2dd139a9.zip
Revert "Only print testbench failure TeamCity messages when running in TC"
This reverts commit d0e604f6b509767c46ffe0fd6765cf23535f593e. Change-Id: I14509a9cb1365761d02a3a8a18d3febc4a7ba918
Diffstat (limited to 'uitest/src/com')
-rw-r--r--uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java b/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java
index 367229eaaa..565cd4ce34 100644
--- a/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java
+++ b/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java
@@ -68,11 +68,9 @@ public abstract class ScreenshotTB3Test extends AbstractTB3Test {
protected void failed(Throwable e, Description description) {
// Notify Teamcity of failed test
- if (!System.getProperty("teamcity.version", "").equals("")) {
- System.out.print("##teamcity[publishArtifacts '");
- System.out.println(getScreenshotErrorBaseName()
- + "* => screenshot-errors']");
- }
+ System.out.print("##teamcity[publishArtifacts '");
+ System.out.println(getScreenshotErrorBaseName()
+ + "* => screenshot-errors']");
}
};