Skip to content

Commit dc8dda6

Browse files
committed
🚨 Fixed lints
1 parent ce8fe3b commit dc8dda6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/errors/stack_trace_extension.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ extension StackTraceExtension on StackTrace {
88
final trace = Trace.from(this);
99

1010
// We are looking for frames from the body of the supplied test function.
11-
int index = 0;
12-
bool found = false;
11+
var index = 0;
12+
var found = false;
1313
while (!found) {
1414
index = trace.frames.indexWhere(
1515
(f) => f.package == 'parameterized_test',

0 commit comments

Comments
 (0)