Skip to content

Commit

Permalink
- Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
rathnapandi committed Oct 8, 2024
1 parent 2eea666 commit 747a0d8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Force APIM-cli to download the latest Trusted Certificates in a Frontend API (See issue [#494](https://github.com/Axway-API-Management-Plus/apim-cli/issues/494))

### Changed
- Updated libs
- Updated libs to fix security vulnerabilities
- com.graphql-java:graphql-java from 21.3 to 21.5
- commons-io:commons-io from 2.11.0 to 2.14.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,6 @@ public List<Map<String, String>> getApplications() {
if (actualAPIProxy.getApplications().isEmpty()) return Collections.emptyList();
List<Map<String, String>> exportApps = new ArrayList<>();
for (ClientApplication app : actualAPIProxy.getApplications()) {
if(app.getOrganization().getName().equals(actualAPIProxy.getOrganization().getName())) // Ignore the app under development organization
continue;
Map<String, String> applications = new HashMap<>();
applications.put("name", app.getName());
exportApps.add(applications);
Expand Down

0 comments on commit 747a0d8

Please sign in to comment.