Skip to content

Commit 58b8762

Browse files
committed
reverting change to pattern test
1 parent a1f017c commit 58b8762

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dwds/test/instances/common/patterns_inspection_common.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,8 @@ void runTests({
9898

9999
expect(await getFrameVariables(frame), {
100100
'obj': matchListInstance(type: 'Object'),
101-
// Renamed to avoid shadowing variables from previous case.
102-
'a\$': matchPrimitiveInstance(kind: InstanceKind.kString, value: 'b'),
103-
'n\$':
104-
matchPrimitiveInstance(kind: InstanceKind.kDouble, value: 3.14),
101+
'a': matchPrimitiveInstance(kind: InstanceKind.kString, value: 'b'),
102+
'n': matchPrimitiveInstance(kind: InstanceKind.kDouble, value: 3.14),
105103
});
106104
});
107105
});

0 commit comments

Comments
 (0)