Fix minor coding style issue in this test; something was being
computed twice.


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5038 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/fast/js/global/encode-URI-test.html b/LayoutTests/fast/js/global/encode-URI-test.html
index 317a08e..3ed9682 100644
--- a/LayoutTests/fast/js/global/encode-URI-test.html
+++ b/LayoutTests/fast/js/global/encode-URI-test.html
@@ -159,7 +159,7 @@
     var result = call(functionName, parameter);
     if (result != desiredResult) {
         var s = "called " + functionName + " on " + printable(parameter) + " and got " + printable(result) + " instead of " + printable(desiredResult);
-        document.writeln("<p>called " + functionName + " on " + printable(parameter) + " and got " + printable(result) + " instead of " + printable(desiredResult) + "</p>");
+        document.writeln("<p>" + s + "</p>");
         failureCount += 1;
     }
 }