Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/propertiestests.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-10-21 05:10:06 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-10-21 05:10:06 (GMT)
commit58a99dcf76cb1a9f85fa2873f9a2e7b46470ae8b (patch)
treeffa9f6327fa6617314d1d8ccda96e9a1382daa19 /tests/propertiestests.py
parentb4e9ca55fc02458a9df04fa7df4d882b79d752be (diff)
parent926238a2c54daae80d4c561b4cda8546d40173a7 (diff)
Merge branch 'master' of git://git.sugarlabs.org/tutorius/mainline
Diffstat (limited to 'tests/propertiestests.py')
-rw-r--r--tests/propertiestests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/propertiestests.py b/tests/propertiestests.py
index 0b8251a..2494ea6 100644
--- a/tests/propertiestests.py
+++ b/tests/propertiestests.py
@@ -375,7 +375,7 @@ class TArrayPropertyTest(unittest.TestCase):
prop = TArrayProperty([1, 2, 3, 4])
obj = klass()
- assert obj.prop == [1,2,3,4], "Unable to set initial value via constructor"
+ assert obj.prop == (1,2,3,4), "Unable to set initial value via constructor"
assert klass.prop.type == "array", "Wrong type for array : %s"%klass.prop.type