From 2b8876dd2ec6afbd44354098c84826516ee36b7b Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Mon, 19 Dec 2022 13:33:31 +0300 Subject: [PATCH] Linter fix Signed-off-by: Alex Andreev --- .../installing-helm-chart-from-new-tab.test.ts | 4 ++-- .../opening-dock-tab-for-installing-helm-chart.test.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts b/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts index 4e2542b7cb..6a28ea7284 100644 --- a/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts +++ b/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts @@ -180,7 +180,7 @@ describe("installing helm chart from new tab", () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -477,7 +477,7 @@ describe("installing helm chart from new tab", () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); diff --git a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts index a92a9cdefa..3fd6a7deb7 100644 --- a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts +++ b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts @@ -232,7 +232,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -281,7 +281,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -310,7 +310,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: false, - error: "some-error" + error: "some-error", }); });