Skip to content

Commit

Permalink
[#1456] Correct type names for registry contract tests
Browse files Browse the repository at this point in the history
`KeyKeepersRegitryTest` ->
`KeyKeepersRegistryTest`
  • Loading branch information
ruspl-afed committed Nov 13, 2024
1 parent ab755c3 commit 30005ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 33 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 PermissionEmittingServicesRegitryTest extends ReadOnlyCollectionTest<PermissionEmittingService> {
public abstract class PermissionEmittingServicesRegistryTest extends ReadOnlyCollectionTest<PermissionEmittingService> {

@Override
protected final Supplier<Collection<PermissionEmittingService>> 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.PermissionEmittingServicesRegitryTest;
import org.eclipse.passage.lic.api.tests.PermissionEmittingServicesRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedPermissionEmttingServicesRegistryTest extends PermissionEmittingServicesRegitryTest {
public final class SealedPermissionEmittingServicesRegistryTest extends PermissionEmittingServicesRegistryTest {

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

This file was deleted.

0 comments on commit 30005ce

Please sign in to comment.