* Changed the registry test. TRegistry.DeleteKey must delete all sub-keys. It is Delphi compatible despite the incorrect statement in the online Delphi docs.

git-svn-id: trunk@48378 -
This commit is contained in:
yury 2021-01-24 10:05:28 +00:00
parent 25e2f29e01
commit e84fbcedac

View File

@ -266,7 +266,7 @@ begin
AssertTrue(format('OpenKey(''%s'') failed.',[Base]),B);
B := R.DeleteKey('One');
AssertFalse(format('DeleteKey(''%s'') should have failed, but it succeeded.',[OneFull]),B);
AssertTrue(format('DeleteKey(''%s'') should have succeeded, but it failed.',[OneFull]),B);
finally
R.Free;
CleanUp(ExceptObject <> nil);