From dcd0252ef44e708b8edea27180d14442223c1c79 Mon Sep 17 00:00:00 2001 From: Igor Braginsky Date: Tue, 17 Sep 2024 15:34:50 +0300 Subject: [PATCH] Fixed json name for NodeJS (#36) --- fixtures/analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixtures/analysis.py b/fixtures/analysis.py index e8fe50e..7a43f3e 100644 --- a/fixtures/analysis.py +++ b/fixtures/analysis.py @@ -22,6 +22,6 @@ def golang_analysis_data(): @pytest.fixture(scope="session") def nodejs_analysis_data(): - with open('data/nodejs.json', 'r') as file: + with open('data/nodejs_analysis.json', 'r') as file: json_list = json.load(file) return json_list