summaryrefslogtreecommitdiffstats
path: root/tests/auto/qml-qtquicktest/tst_boxplotseries.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml-qtquicktest/tst_boxplotseries.qml')
-rw-r--r--tests/auto/qml-qtquicktest/tst_boxplotseries.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/qml-qtquicktest/tst_boxplotseries.qml b/tests/auto/qml-qtquicktest/tst_boxplotseries.qml
index 56eba68a..7a991a6d 100644
--- a/tests/auto/qml-qtquicktest/tst_boxplotseries.qml
+++ b/tests/auto/qml-qtquicktest/tst_boxplotseries.qml
@@ -20,7 +20,7 @@
import QtQuick 2.0
import QtTest 1.0
-import QtCommercial.Chart 1.3
+import QtCommercial.Chart 1.4
Rectangle {
width: 400
@@ -33,12 +33,14 @@ Rectangle {
function test_properties() {
compare(boxPlotSeries.boxWidth, 0.5);
+ compare(boxPlotSeries.brushFilename, "");
}
function test_setproperties() {
var set = boxPlotSeries.append("boxplot", [1, 2, 5, 6, 8]);
compare(set.label, "boxplot");
compare(set.count, 5);
+ compare(set.brushFilename, "");
}
function test_append() {