summaryrefslogtreecommitdiff
path: root/forms/qa
diff options
context:
space:
mode:
Diffstat (limited to 'forms/qa')
-rw-r--r--forms/qa/integration/forms/FormControlTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/qa/integration/forms/FormControlTest.java b/forms/qa/integration/forms/FormControlTest.java
index b7dacb7977bf..b02dc564a5fb 100644
--- a/forms/qa/integration/forms/FormControlTest.java
+++ b/forms/qa/integration/forms/FormControlTest.java
@@ -680,8 +680,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;
@@ -704,8 +704,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;
@@ -726,8 +726,8 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
if ( currentValue != requiredValue )
{
log.println( "wrong value of the " + fieldName + " field!" );
- log.println( " expected: " + String.valueOf( requiredValue ) );
- log.println( " found : " + String.valueOf( currentValue ) );
+ log.println( " expected: " + requiredValue );
+ log.println( " found : " + currentValue );
}
else
return true;