From 32704fb7e940216d8839e0ecc22f92c489d2ce5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 22 Oct 2025 11:23:09 +0200 Subject: [PATCH] test: fix OCPP 2 CS template expectations MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- tests/charging-station/Helpers.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/charging-station/Helpers.test.ts b/tests/charging-station/Helpers.test.ts index 93fa6495..71a1a009 100644 --- a/tests/charging-station/Helpers.test.ts +++ b/tests/charging-station/Helpers.test.ts @@ -123,7 +123,7 @@ await describe('Helpers test suite', async () => { validateStationInfo(chargingStation) }).toThrow( new BaseError( - `${baseName}-00001: OCPP 2.0 or superior requires at least one EVSE defined in the charging station template/configuration` + `${baseName}-00001: OCPP 2.0.x requires at least one EVSE defined in the charging station template/configuration` ) ) chargingStation.stationInfo.ocppVersion = OCPPVersion.VERSION_201 @@ -131,7 +131,7 @@ await describe('Helpers test suite', async () => { validateStationInfo(chargingStation) }).toThrow( new BaseError( - `${baseName}-00001: OCPP 2.0 or superior requires at least one EVSE defined in the charging station template/configuration` + `${baseName}-00001: OCPP 2.0.x requires at least one EVSE defined in the charging station template/configuration` ) ) }) -- 2.43.0