about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-08-27 12:17:01 +0000
committerEric Wong <e@yhbt.net>2020-08-27 22:33:44 +0000
commit7f4a11a6499aade26b418b7ae13cd12859f75bdd (patch)
treed814f45562d3a96f3b740e8daf37e40a912506a2 /t
parent1e3c53a422b8d23cff961e43f77ea0a835cdef78 (diff)
downloadpublic-inbox-7f4a11a6499aade26b418b7ae13cd12859f75bdd.tar.gz
There's no need for this to be a separate sub since there's
only a single caller.  This saves a few kilobytes at least
in short-lived processes.
Diffstat (limited to 't')
-rw-r--r--t/over.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/over.t b/t/over.t
index 41c13872..4c8f8098 100644
--- a/t/over.t
+++ b/t/over.t
@@ -33,9 +33,9 @@ $over->dbh;
 is($over->sid('hello-world'), $x, 'idempotent across reopen');
 $over->each_by_mid('never', sub { fail('should not be called') });
 
-$x = $over->create_ghost('never');
+$x = $over->resolve_mid_to_tid('never');
 is(int($x), $x, 'integer tid for ghost');
-$y = $over->create_ghost('NEVAR');
+$y = $over->resolve_mid_to_tid('NEVAR');
 is($y, $x + 1, 'integer tid for ghost increases');
 
 my $ddd = compress('');