From 8182dc01d14f18a7a68b5452ec1170ec90845919 Mon Sep 17 00:00:00 2001 From: Damien Iriberry <damien.iriberry@artal.fr> Date: Fri, 19 Apr 2024 15:42:33 +0200 Subject: [PATCH] [ivette] Fix e2e Test with C file analyse --- ivette/tests/src/server-connection-file.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ivette/tests/src/server-connection-file.spec.ts b/ivette/tests/src/server-connection-file.spec.ts index 625e12f947a..cd59d88d245 100644 --- a/ivette/tests/src/server-connection-file.spec.ts +++ b/ivette/tests/src/server-connection-file.spec.ts @@ -28,6 +28,6 @@ test("server connection with a C file to analyze", async () => { await e2eService.launchIvette("../tests/test/adpcm.c"); const electronApp = launchAppResult.app; const window = launchAppResult.page; - await e2eService.testFileIsLoaded(window, "../tests/test/adpcm.c"); + await e2eService.testFileIsLoaded(window, "tests/test/adpcm.c"); await electronApp.close(); }); -- GitLab