Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Oct 10, 2023
1 parent 7f1f8e1 commit b224faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/base.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1130,14 +1130,14 @@ describe('Base', () => {
)
.queueTransformStream(
passthrough(file => {
file.contents = Buffer.from('inializing');
file.contents = Buffer.from('initializing');
}),
{ priorityToQueue: 'initializing' },
);
};

return testGen.run().then(() => {
assert.equal(fs.readFileSync(filepath, 'utf8'), 'inializing prompting a b');
assert.equal(fs.readFileSync(filepath, 'utf8'), 'initializing prompting a b');
});
});

Expand Down

0 comments on commit b224faa

Please sign in to comment.