summaryrefslogtreecommitdiffstats
path: root/tdeabc/tests/testaddressfmt.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-05-29 02:24:21 +0200
committerSlávek Banko <slavek.banko@axis.cz>2016-05-29 02:24:21 +0200
commit51efac909d7b116c8b0ca58fcd4e74ff58f31091 (patch)
treed817aab5133718fff032df3f1e517713a6fcfe4a /tdeabc/tests/testaddressfmt.cpp
parent5fac044f8da14563a3afca64bd05facd6811df91 (diff)
downloadtdelibs-51efac909d7b116c8b0ca58fcd4e74ff58f31091.tar.gz
tdelibs-51efac909d7b116c8b0ca58fcd4e74ff58f31091.zip
cmake: Add tdeabc tests
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdeabc/tests/testaddressfmt.cpp')
-rw-r--r--tdeabc/tests/testaddressfmt.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeabc/tests/testaddressfmt.cpp b/tdeabc/tests/testaddressfmt.cpp
index 79545f6f9..bf5347f4e 100644
--- a/tdeabc/tests/testaddressfmt.cpp
+++ b/tdeabc/tests/testaddressfmt.cpp
@@ -51,13 +51,13 @@ int main(int argc,char **argv)
d.setCountry ("");
tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" );
- tqDebug( a.formattedAddress("Jim Knopf").latin1() );
+ tqDebug( "%s", a.formattedAddress("Jim Knopf").latin1() );
tqDebug( "-------------------------------------\nShould have US address formatting, local country formatting\n" );
- tqDebug( b.formattedAddress("Huck Finn").latin1() );
+ tqDebug( "%s", b.formattedAddress("Huck Finn").latin1() );
tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" );
- tqDebug( c.formattedAddress("Jim Knopf").latin1() );
+ tqDebug( "%s", c.formattedAddress("Jim Knopf").latin1() );
tqDebug( "-------------------------------------\nShould have local address formatting, local country formatting\n" );
- tqDebug( d.formattedAddress("Jim Knopf").latin1() );
+ tqDebug( "%s", d.formattedAddress("Jim Knopf").latin1() );
}