Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tycho-4.0.x] Adjust resolving tests for 4.31 #3665

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2022 Sonatype Inc. and others.
* Copyright (c) 2008, 2024 Sonatype Inc. and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -222,8 +222,8 @@ public void testBundleUsesSWT() throws Exception {

result = singleEnv(impl.resolveTargetDependencies(getTargetPlatform(), projectToResolve));

assertEquals(3, result.getArtifacts().size());
assertEquals(3, result.getNonReactorUnits().size()); // + a.jre
assertEquals(4, result.getArtifacts().size());
assertEquals(4, result.getNonReactorUnits().size()); // + a.jre

assertContainsUnit("org.eclipse.swt", result.getNonReactorUnits());
assertContainsUnit("org.eclipse.swt.gtk.linux.x86_64", result.getNonReactorUnits());
Expand Down
Loading