[pygobject/py3k] Fix reference to long



commit e5774f5c9ff8301c799eb46f911450f94a01f47b
Author: John Ehresman <jpe wingware com>
Date:   Fri Apr 16 13:27:01 2010 -0400

    Fix reference to long

 tests/test_properties.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/tests/test_properties.py b/tests/test_properties.py
index b05234c..ca2cde6 100644
--- a/tests/test_properties.py
+++ b/tests/test_properties.py
@@ -195,7 +195,7 @@ class TestProperty(unittest.TestCase):
             str = gobject.property(type=str)
             int = gobject.property(type=int)
             float = gobject.property(type=float)
-            long = gobject.property(type=long)
+            long = gobject.property(type=_long)
 
         self.failUnless(hasattr(C.props, 'str'))
         self.failUnless(hasattr(C.props, 'int'))



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]