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