diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-11-19 21:27:09 -0500 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-11-19 21:27:09 -0500 |
commit | d49a7ea6c05521995afa8b73fcf0e638931f83d9 (patch) | |
tree | 0dba2a27ac7e09bd59ea01d789855f78c6daaa78 /tests/functional | |
parent | d65762d548ef3869db2947d7f74434708c0b0820 (diff) | |
download | pykolab-d49a7ea6c05521995afa8b73fcf0e638931f83d9.tar.gz |
Build iTip response and notification messages with unicode strings (#3926) + adjust tests
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/resource_func.py | 3 | ||||
-rw-r--r-- | tests/functional/test_wallace/test_005_resource_invitation.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/functional/resource_func.py b/tests/functional/resource_func.py index ac80360..a7e4d90 100644 --- a/tests/functional/resource_func.py +++ b/tests/functional/resource_func.py @@ -15,7 +15,8 @@ def resource_add(type, cn, members=None, owner=None, **kw): 'cn': cn, 'kolabtargetfolder': "shared/Resources/" + cn + "@example.org", 'uniquemember': members, - 'owner': owner + 'owner': owner, + 'ou': 'ou=resources,dc=example,dc=org' } resource_details.update(kw) diff --git a/tests/functional/test_wallace/test_005_resource_invitation.py b/tests/functional/test_wallace/test_005_resource_invitation.py index 4e69f2f..885f4ba 100644 --- a/tests/functional/test_wallace/test_005_resource_invitation.py +++ b/tests/functional/test_wallace/test_005_resource_invitation.py @@ -574,7 +574,7 @@ class TestResourceInvitation(unittest.TestCase): def test_010_invalid_bookings(self): self.purge_mailbox(self.john['mailbox']) - itip_other = itip_invitation.replace("mailto:%s", "mailto:some-other-resource@example.org\nDESCRIPTION: Sent to %s") + itip_other = itip_invitation.replace("mailto:%s", "mailto:some-other-resource@example.org\nCOMMENT: Sent to %s") self.send_itip_invitation(self.audi['mail'], datetime.datetime(2014,3,22, 8,0,0), template=itip_other) time.sleep(1) |