| Index: tracing/tracing/model/slice_test.html
|
| diff --git a/tracing/tracing/model/slice_test.html b/tracing/tracing/model/slice_test.html
|
| index 64cfba6e4c224cb560fcfa7f77555f67f251e72b..b7d1308fa7f3c196a6ef597ac7a36dfa18733c5b 100644
|
| --- a/tracing/tracing/model/slice_test.html
|
| +++ b/tracing/tracing/model/slice_test.html
|
| @@ -47,8 +47,9 @@ tr.b.unittest.testSuite(function() {
|
| group.createSubSlices();
|
|
|
| var foundSlices = [];
|
| - for (var slice of sC1.findTopmostSlicesRelativeToThisSlice(PREDICATE))
|
| + for (var slice of sC1.findTopmostSlicesRelativeToThisSlice(PREDICATE)) {
|
| foundSlices.push(slice);
|
| + }
|
|
|
| assert.deepEqual([sC1], foundSlices);
|
| });
|
| @@ -68,8 +69,9 @@ tr.b.unittest.testSuite(function() {
|
| group.createSubSlices();
|
|
|
| var foundSlices = [];
|
| - for (var slice of sD.findTopmostSlicesRelativeToThisSlice(PREDICATE))
|
| + for (var slice of sD.findTopmostSlicesRelativeToThisSlice(PREDICATE)) {
|
| foundSlices.push(slice);
|
| + }
|
| assert.deepEqual([sC1, sC2], foundSlices);
|
| });
|
|
|
|
|