Skip to content

Commit e22191f

Browse files
authored
fix(schema:update): correct a typo in an instruction (#622)
1 parent 320b8dd commit e22191f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/services/dumpers/forest-express.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ class ForestExpress extends AbstractDumper {
378378
}
379379
if (Number(lianaMajorVersion) < 7) {
380380
throw new IncompatibleLianaForUpdateError(
381-
'Your project is not compatible with the `lforest schema:update` command. You need to use an agent version greater than 7.0.0.',
381+
'Your project is not compatible with the `forest schema:update` command. You need to use an agent version greater than 7.0.0.',
382382
);
383383
}
384384
}

test/services/dumpers/forest-express/forest-express.unit.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ describe('services > dumper (unit)', () => {
809809

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

827827
expect(() => dumper.checkLianaCompatiblityForUpdate()).toThrow(
828828
new IncompatibleLianaForUpdateError(
829-
'Your project is not compatible with the `lforest schema:update` command. You need to use an agent version greater than 7.0.0.',
829+
'Your project is not compatible with the `forest schema:update` command. You need to use an agent version greater than 7.0.0.',
830830
),
831831
);
832832
});

0 commit comments

Comments
 (0)