]> Dogcows Code - chaz/p5-File-KDBX/blobdiff - t/object.t
Add maintenance methods
[chaz/p5-File-KDBX] / t / object.t
index ebf039fc0895ebd0e2402e98f46ad7de01ee7754..d3e766d26d5d402cc665cdba9540c88a88da877a 100644 (file)
@@ -44,11 +44,11 @@ subtest 'Cloning' => sub {
     $copy = $entry->clone(reference_username => 1);
     my $ref = sprintf('{REF:U@I:%s}', format_uuid($entry->uuid));
     is $copy->username, $ref, 'Copy has username reference';
-    is $copy->expanded_username, $ref, 'Entry copy does not expand username because entry is not in database';
+    is $copy->expand_username, $ref, 'Entry copy does not expand username because entry is not in database';
 
     my $group = $kdbx->add_group(label => 'Passwords');
     $group->add_entry($entry);
-    is $copy->expanded_username, $entry->username,
+    is $copy->expand_username, $entry->username,
         'Entry in database and its copy with username ref have same expanded username';
 
     $copy = $entry->clone;
This page took 0.022142 seconds and 4 git commands to generate.