[seed] Fix printf in tests



commit 78631a0ec9e53c3beaf919c08e5bdec8a2f0a6f5
Author: Robert Carr <racarr svn gnome org>
Date:   Fri May 29 05:30:30 2009 -0400

    Fix printf in tests
---
 tests/javascript/printf.js |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/javascript/printf.js b/tests/javascript/printf.js
index 21f34da..d0cdb7a 100755
--- a/tests/javascript/printf.js
+++ b/tests/javascript/printf.js
@@ -4,9 +4,9 @@
 // STDOUT:string\nstring\ninteger 4\nfloat 0\.333333\nmore 0\.333333333\nless 0\.33
 // STDERR:
 
-printf("string");
-printf("%s", "string");
-printf("%s %d", "integer", 2+2);
-printf("%s %f", "float", 1/3);
-printf("%s %.9f", "more", 1/3);
-printf("%s %.2f", "less", 1/3);
+Seed.printf("string");
+Seed.printf("%s", "string");
+Seed.printf("%s %d", "integer", 2+2);
+Seed.printf("%s %f", "float", 1/3);
+Seed.printf("%s %.9f", "more", 1/3);
+Seed.printf("%s %.2f", "less", 1/3);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]