Skip to content

Commit

Permalink
[#1456] Correct type names for registry contract tests
Browse files Browse the repository at this point in the history
`ConditionTransportServicesRegitryTest` ->
`ConditionTransportServicesRegistryTest`
  • Loading branch information
ruspl-afed committed Nov 12, 2024
1 parent 354c71c commit 4ec620e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

Expand All @@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class ConditionTransportServicesRegitryTest extends ReadOnlyCollectionTest<ConditionTransport> {
public abstract class ConditionTransportServicesRegistryTest extends ReadOnlyCollectionTest<ConditionTransport> {

@Override
protected final Supplier<Collection<ConditionTransport>> collection() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2024 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -9,16 +9,17 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.seal.demo.tests.registries;

import java.util.Optional;

import org.eclipse.passage.lic.api.Framework;
import org.eclipse.passage.lic.api.tests.ConditionTransportServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.ConditionTransportServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedTransportsRegistryTest extends ConditionTransportServicesRegitryTest {
public final class SealedTransportsRegistryTest extends ConditionTransportServicesRegistryTest {

@Override
protected Optional<Framework> framework() {
Expand Down

0 comments on commit 4ec620e

Please sign in to comment.