aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml b/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml
deleted file mode 100644
index aff61cc436..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImportScoping.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 2.0
-
-// For backward compatibility, importing a script which has no imports,
-// should run the script in the parent context. See QTBUG-17518.
-
-import "importWithNoImports.js" as TestNoImportScoping
-
-QtObject {
- id: testQtObject
- property int componentError: TestNoImportScoping.componentError()
-}