##// END OF EJS Templates
fixed test case...
florianlink -
r20:1203bfc88874
parent child
Show More
@@ -255,9 +255,8 void PythonQtTestApi::testVariables()
255 255 QSet<QString> s;
256 256 // check that at least these three variables are set
257 257 s << "obj" << "someObject" << "someValue";
258 QString a;
259 foreach (a, l) {
260 QVERIFY(s.contains(a));
258 foreach (QString value, s) {
259 QVERIFY(l.indexOf(value)!=-1);
261 260 }
262 261
263 262 // insert a second time!
General Comments 0
You need to be logged in to leave comments. Login now