[CalendarServer-changes] [9614] CalendarServer/branches/users/glyph/q
source_changes at macosforge.org
source_changes at macosforge.org
Sat Aug 11 01:54:53 PDT 2012
Revision: 9614
http://trac.macosforge.org/projects/calendarserver/changeset/9614
Author: glyph at apple.com
Date: 2012-08-11 01:54:53 -0700 (Sat, 11 Aug 2012)
Log Message:
-----------
Get the attribute names correct in the tests.
Modified Paths:
--------------
CalendarServer/branches/users/glyph/q/twext/enterprise/dal/test/test_record.py
Property Changed:
----------------
CalendarServer/branches/users/glyph/q/
Modified: CalendarServer/branches/users/glyph/q/twext/enterprise/dal/test/test_record.py
===================================================================
--- CalendarServer/branches/users/glyph/q/twext/enterprise/dal/test/test_record.py 2012-08-11 08:54:52 UTC (rev 9613)
+++ CalendarServer/branches/users/glyph/q/twext/enterprise/dal/test/test_record.py 2012-08-11 08:54:53 UTC (rev 9614)
@@ -130,9 +130,9 @@
database.
"""
txn = self.pool.connection()
- rec = yield TestRecord.create(txn, beta=3, gamme=u'epsilon')
+ rec = yield TestRecord.create(txn, beta=3, gamma=u'epsilon')
yield rec.update(gamma=u'otherwise')
- self.assertEqual(rec.beta, u'otherwise')
+ self.assertEqual(rec.gamma, u'otherwise')
yield txn.commit()
# Make sure that it persists.
txn = self.pool.connection()
@@ -140,3 +140,4 @@
self.assertEqual(rec.gamma, u'otherwise')
+
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20120811/e091bab4/attachment-0001.html>
More information about the calendarserver-changes
mailing list