aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/tests/tests.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/example/tests/tests.cpp b/example/tests/tests.cpp
index de48ef62..8e175844 100644
--- a/example/tests/tests.cpp
+++ b/example/tests/tests.cpp
@@ -352,11 +352,10 @@ void TestXmlRpc::testBase64()
void TestXmlRpc::testBool()
{
- // FIXME : XML-RPC spec says we should write "0" or "1"
checkVariant(false,
- QByteArray("<value><boolean>false</boolean></value>"));
+ QByteArray("<value><boolean>0</boolean></value>"));
checkVariant(true,
- QByteArray("<value><boolean>true</boolean></value>"));
+ QByteArray("<value><boolean>1</boolean></value>"));
}
void TestXmlRpc::testDateTime()