From 68ff5104da39fe3e42b94fb6c94db273baa50eb9 Mon Sep 17 00:00:00 2001 From: Marco Eidinger Date: Wed, 14 Jul 2021 14:13:43 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20fix=20IntegrationCard=20e?= =?UTF-8?q?xamples=20for=20data=20requests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SampleData/DataRequestTestCases.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Apps/Examples/Examples/FioriIntegrationCards/SampleData/DataRequestTestCases.swift b/Apps/Examples/Examples/FioriIntegrationCards/SampleData/DataRequestTestCases.swift index c04cd603f..149880c90 100644 --- a/Apps/Examples/Examples/FioriIntegrationCards/SampleData/DataRequestTestCases.swift +++ b/Apps/Examples/Examples/FioriIntegrationCards/SampleData/DataRequestTestCases.swift @@ -19,9 +19,9 @@ enum DataRequestTestCases: String, CaseIterable, Identifiable, CardTestCase { func manifestPath() -> String { switch self { case .data: - return "samples/data/manifest.json" + return "samples/data/basic/manifest.json" case .parameters: - return "samples/parameters.json" + return "samples/parameters/parameters/manifest.json" } } @@ -31,7 +31,7 @@ enum DataRequestTestCases: String, CaseIterable, Identifiable, CardTestCase { func manifest() -> Manifest? { do { - return try Manifest(withCardBundleAt: URL(string: "https://openui5.hana.ondemand.com/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/")!, manifestPath: self.manifestPath()) + return try Manifest(withCardBundleAt: URL(string: "https://ui5.sap.com/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/")!, manifestPath: self.manifestPath()) } catch { print(error) }