diff options
author | Lance Stout <lancestout@gmail.com> | 2010-07-20 11:19:49 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-07-20 11:19:49 -0400 |
commit | 690eaf8d3c3856c6242612da22e6c6d323f193ed (patch) | |
tree | e30559d06d1ededaee68d0974b8ca0d3485d5ef4 /tests | |
parent | f505e229d6af009ba926292e3947346614df89f9 (diff) | |
download | slixmpp-690eaf8d3c3856c6242612da22e6c6d323f193ed.tar.gz slixmpp-690eaf8d3c3856c6242612da22e6c6d323f193ed.tar.bz2 slixmpp-690eaf8d3c3856c6242612da22e6c6d323f193ed.tar.xz slixmpp-690eaf8d3c3856c6242612da22e6c6d323f193ed.zip |
Updated license notices to use the correct MIT format. Also corrected references to nonexistant license.txt to LICENSE.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sleektest.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/sleektest.py b/tests/sleektest.py index 9f4198ec..f89966ec 100644 --- a/tests/sleektest.py +++ b/tests/sleektest.py @@ -3,7 +3,7 @@ Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout This file is part of SleekXMPP. - See the file license.txt for copying permission. + See the file LICENSE for copying permission. """ import unittest @@ -127,6 +127,11 @@ class SleekTest(unittest.TestCase): msg['type'] = msg['type'] if xml.attrib.get('type', None) is None: xml.attrib['type'] = 'normal' + msg2['type'] = msg2['type'] + debug += ">>>>Given Stanza:\n%s\n" % ET.tostring(msg.xml) + debug += "XML String:\n%s\n" % ET.tostring(xml) + debug += ">>>>Constructed Stanza:\n%s\n" % ET.tostring(msg2.xml) + values = msg2.getStanzaValues() msg3 = self.Message() |