aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals/ref06_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/signals/ref06_test.py')
-rwxr-xr-xtests/signals/ref06_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/signals/ref06_test.py b/tests/signals/ref06_test.py
index cefa1f2ca..05712b3be 100755
--- a/tests/signals/ref06_test.py
+++ b/tests/signals/ref06_test.py
@@ -2,17 +2,17 @@
# -*- coding: utf-8 -*-
import unittest
-from PySide.QtCore import QObject, QCoreApplication, QTimeLine, signal, slot
+from PySide.QtCore import QObject, QCoreApplication, QTimeLine, Signal, Slot
from helper import UsesQCoreApplication
class ExtQObject(QObject):
- signalbetween = signal('qreal')
+ signalbetween = Signal('qreal')
def __init__(self):
QObject.__init__(self)
self.counter = 0
- @slot('qreal')
+ @Slot('qreal')
def foo(self, value):
self.counter += 1