aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml')
-rw-r--r--tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml b/tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml
deleted file mode 100644
index b5af13cc4c..0000000000
--- a/tests/auto/declarative/qquicktextinput/data/qtbug-19956regexp.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 2.0
-
-TextInput {
- id: textinput
- property variant regexvalue
- height: 50
- width: 200
- text: "abc"
- validator: RegExpValidator {
- id: regexpvalidator
- regExp: regexvalue
- }
-}