summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp')
-rw-r--r--tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp b/tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp
index 81c6736abd..3ef92eff3c 100644
--- a/tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp
+++ b/tests/auto/corelib/tools/qbitarray/tst_qbitarray.cpp
@@ -138,11 +138,11 @@ void tst_QBitArray::size()
a.fill(1);
int len = a.size();
for (int j=0; j<len; j++) {
- bool b = a[j];
- if (b)
- S+= "1";
- else
- S+= "0";
+ bool b = a[j];
+ if (b)
+ S+= "1";
+ else
+ S+= "0";
}
QTEST(S,"res");
}