about summary refs log tree commit diff stats
path: root/tests/functionaltests/test_receipts.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functionaltests/test_receipts.c')
-rw-r--r--tests/functionaltests/test_receipts.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functionaltests/test_receipts.c b/tests/functionaltests/test_receipts.c
index 357663f3..6a347f7e 100644
--- a/tests/functionaltests/test_receipts.c
+++ b/tests/functionaltests/test_receipts.c
@@ -21,9 +21,9 @@ send_receipt_request(void **state)
     prof_input("/msg somejid@someserver.com Hi there");
 
     assert_true(stbbr_received(
-        "<message id=\"*\" type=\"chat\" to=\"somejid@someserver.com\">"
+        "<message id='*' type='chat' to='somejid@someserver.com'>"
             "<body>Hi there</body>"
-            "<request xmlns=\"urn:xmpp:receipts\"/>"
+            "<request xmlns='urn:xmpp:receipts'/>"
         "</message>"
     ));
 }
@@ -36,15 +36,15 @@ send_receipt_on_request(void **state)
     prof_connect();
 
     stbbr_send(
-        "<message id=\"msg12213\" type=\"chat\" to=\"stabber@localhost/profanity\" from=\"someuser@server.org/profanity\">"
+        "<message id='msg12213' type='chat' to='stabber@localhost/profanity' from='someuser@server.org/profanity'>"
             "<body>Wants a receipt</body>"
-            "<request xmlns=\"urn:xmpp:receipts\"/>"
+            "<request xmlns='urn:xmpp:receipts'/>"
         "</message>"
     );
 
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"someuser@server.org/profanity\">"
-            "<received id=\"msg12213\" xmlns=\"urn:xmpp:receipts\"/>"
+        "<message id='*' to='someuser@server.org/profanity'>"
+            "<received id='msg12213' xmlns='urn:xmpp:receipts'/>"
         "</message>"
     ));
 }