summaryrefslogtreecommitdiff
path: root/framework/qa/complex/path_settings/PathSettingsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qa/complex/path_settings/PathSettingsTest.java')
-rw-r--r--framework/qa/complex/path_settings/PathSettingsTest.java15
1 files changed, 4 insertions, 11 deletions
diff --git a/framework/qa/complex/path_settings/PathSettingsTest.java b/framework/qa/complex/path_settings/PathSettingsTest.java
index f23cf0e9ffa4..0c01ef32228e 100644
--- a/framework/qa/complex/path_settings/PathSettingsTest.java
+++ b/framework/qa/complex/path_settings/PathSettingsTest.java
@@ -563,7 +563,10 @@ public class PathSettingsTest
System.out.println(" FAIL: Did not change value on property " + name + ".");
bResult = false;
}
- newVal = changeToIncorrectValue(val);
+ /*
+ * Change the given String to an incorrect path URL.
+ */
+ newVal = "fileblablabla";
System.out.println(" Try to change to incorrect value '" + newVal + "'");
try
{
@@ -650,16 +653,6 @@ public class PathSettingsTest
}
/**
- * Change the given String to an incorrect path URL.
- * @return The changed path URL.
- */
- private String changeToIncorrectValue(String path)
- {
- // return an illegal path
- return "fileblablabla";
- }
-
- /**
* Listener implementation which sets a flag when
* listener was called.
*/