agronholm / jython-swingutils (http://pypi.python.org/pypi/jython-swingutils/)

An assortment of utility classes and functions that ease the task of writing GUI applications with the Java Swing toolkit.

commit 62: a204d8815616
parent 61: 78db09a4bf94
branch: default
Fixed spelling of syncnow keyword argument
Alex Grönholm / agronholm
4 months ago

Changed (Δ0 bytes):

raw changeset »

tests/test_binding.py (1 lines added, 1 lines removed)

Up to file-list tests/test_binding.py:

@@ -130,7 +130,7 @@ class TestConnect(object):
130
130
131
131
    def testOneWaySync(self):
132
132
        bindProperty(self.bean1, 'prop1', self.bean2, 'prop1',
133
                          syncNow=True)
133
                          syncnow=True)
134
134
135
135
        # Bean2.prop1 should have changed
136
136
        eq_(self.bean1.prop1, 'testVal1')