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 05712b3be..cefa1f2ca 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