@@ -1,7 +1,7 @@ /* - * Copyright (c) 2008-2022 Jonathan Schleifer + * Copyright (c) 2008-2024 Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in @@ -16,12 +16,12 @@ #include "config.h" #import "TestsAppDelegate.h" #import "OFSet.h" -#import "OFMapTableSet.h" -#import "OFMutableMapTableSet.h" +#import "OFConcreteSet.h" +#import "OFConcreteMutableSet.h" static OFString *module; @interface SimpleSet: OFSet { @@ -286,10 +286,10 @@ { module = @"OFSet"; [self setTestsWithClass: [SimpleSet class] mutableClass: [SimpleMutableSet class]]; - module = @"OFMapTableSet"; - [self setTestsWithClass: [OFMapTableSet class] - mutableClass: [OFMutableMapTableSet class]]; + module = @"OFConcreteSet"; + [self setTestsWithClass: [OFConcreteSet class] + mutableClass: [OFConcreteMutableSet class]]; } @end