Skip to content

Commit 1b22825

Browse files
1 parent e5dd91e commit 1b22825

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

‎handwritten/firestore/dev/system-test/pipeline.ts‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2471,9 +2471,9 @@ describe.skipClassic('Pipeline class', () => {
24712471
.execute();
24722472
expectResults(
24732473
snapshot,
2474-
{title: '1984', 'publishedSafe': 1961},
2475-
{title: 'Crime and Punishment', 'publishedSafe': 1961},
2476-
{title: 'Dune', 'publishedSafe': 1965},
2474+
{title: '1984', publishedSafe: 1961},
2475+
{title: 'Crime and Punishment', publishedSafe: 1961},
2476+
{title: 'Dune', publishedSafe: 1965},
24772477
);
24782478
});
24792479

@@ -2492,9 +2492,9 @@ describe.skipClassic('Pipeline class', () => {
24922492
.execute();
24932493
expectResults(
24942494
snapshot,
2495-
{title: '1984', 'publishedSafe': 1949},
2496-
{title: 'Crime and Punishment', 'publishedSafe': 1866},
2497-
{title: 'Dune', 'publishedSafe': 1960},
2495+
{title: '1984', publishedSafe: 1949},
2496+
{title: 'Crime and Punishment', publishedSafe: 1866},
2497+
{title: 'Dune', publishedSafe: 1960},
24982498
);
24992499
});
25002500

@@ -2519,13 +2519,13 @@ describe.skipClassic('Pipeline class', () => {
25192519
.execute();
25202520
expectResults(
25212521
snapshot,
2522-
{title: '1984', 'publishedSafe': 1960, rating: 'good'},
2522+
{title: '1984', publishedSafe: 1960, rating: 'good'},
25232523
{
25242524
title: 'Crime and Punishment',
2525-
'publishedSafe': 1960,
2525+
publishedSafe: 1960,
25262526
rating: 'good',
25272527
},
2528-
{title: 'Dune', 'publishedSafe': 1965, rating: 'great'},
2528+
{title: 'Dune', publishedSafe: 1965, rating: 'great'},
25292529
);
25302530
});
25312531

0 commit comments

Comments
 (0)