Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#1456] Correct type names for registry contract tests
Browse files Browse the repository at this point in the history
`KeyKeepersRegitryTest` ->
`KeyKeepersRegistryTest`
ruspl-afed committed Nov 13, 2024
1 parent 226c9db commit ab755c3
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
@@ -9,6 +9,7 @@
*
* Contributors:
* ArSysOp - initial API and implementation
* ArSysOp - further support and improvements
*******************************************************************************/
package org.eclipse.passage.lic.api.tests;

@@ -30,7 +31,7 @@
* and satisfy all the demands.
* </p>
*/
public abstract class KeyKeepersRegitryTest extends ReadOnlyCollectionTest<KeyKeeper> {
public abstract class KeyKeepersRegistryTest extends ReadOnlyCollectionTest<KeyKeeper> {

@Override
protected final Supplier<Collection<KeyKeeper>> collection() {
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
@@ -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.KeyKeepersRegitryTest;
import org.eclipse.passage.lic.api.tests.KeyKeepersRegistryTest;
import org.eclipse.passage.seal.internal.demo.DemoFrameworkSupplier;

public final class SealedKeyKeepersRegistryTest extends KeyKeepersRegitryTest {
public final class SealedKeyKeepersRegistryTest extends KeyKeepersRegistryTest {

@Override
protected Optional<Framework> framework() {

0 comments on commit ab755c3

Please sign in to comment.