Skip to content

Commit

Permalink
fix(schema:update): correct a typo in an instruction (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thenkei authored Sep 1, 2023
1 parent 320b8dd commit e22191f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/services/dumpers/forest-express.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ class ForestExpress extends AbstractDumper {
}
if (Number(lianaMajorVersion) < 7) {
throw new IncompatibleLianaForUpdateError(
'Your project is not compatible with the `lforest schema:update` command. You need to use an agent version greater than 7.0.0.',
'Your project is not compatible with the `forest schema:update` command. You need to use an agent version greater than 7.0.0.',
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ describe('services > dumper (unit)', () => {

expect(() => dumper.checkLianaCompatiblityForUpdate()).toThrow(
new IncompatibleLianaForUpdateError(
'Your project is not compatible with the `lforest schema:update` command. You need to use an agent version greater than 7.0.0.',
'Your project is not compatible with the `forest schema:update` command. You need to use an agent version greater than 7.0.0.',
),
);
});
Expand All @@ -826,7 +826,7 @@ describe('services > dumper (unit)', () => {

expect(() => dumper.checkLianaCompatiblityForUpdate()).toThrow(
new IncompatibleLianaForUpdateError(
'Your project is not compatible with the `lforest schema:update` command. You need to use an agent version greater than 7.0.0.',
'Your project is not compatible with the `forest schema:update` command. You need to use an agent version greater than 7.0.0.',
),
);
});
Expand Down

0 comments on commit e22191f

Please sign in to comment.