Skip to content

Commit

Permalink
fix: 🐛 fix IntegrationCard examples for data requests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEidinger committed Jul 14, 2021
1 parent 6aeb5b5 commit 68ff510
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand All @@ -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)
}
Expand Down

0 comments on commit 68ff510

Please sign in to comment.