Ignore:
Timestamp:
01/15/26 17:51:54 (5 days ago)
Author:
Kris Deugau
Message:

/branches/cname-collision

Grab bag of minor whitespace and docucomment cleanups, along with a minor
strftime de-oops

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/cname-collision/t/cname.t

    r989 r990  
    214214      }
    215215    };
    216 # this test arguably overkill, subsumed by earlier test for substantially the same thing
     216# this test arguably overkill, subsumed by earlier test for nonexpiring collision
    217217    subtest '  - collision with soon to expire record' => sub {
    218218      $newname = 'expired2.expiry1.test';
     
    288288        ok( $rcount == 2, " ... [$rcount] correct number of records for $newname" );
    289289        my ($newstamp) = $dbh->selectrow_array("SELECT extract(epoch from stamp) FROM records WHERE domain_id = 5 AND host = '$newname' ".
    290                "AND stampactive = 't' AND expires = 't'");
     290                "AND stampactive = 't' AND expires = 't'");
    291291        my ($oldstamp) = $dbh->selectrow_array("SELECT extract(epoch from stamp) FROM records WHERE domain_id = 5 AND host = '$newname' ".
    292                "AND stampactive = 't' AND expires = 'f'");
     292                "AND stampactive = 't' AND expires = 'f'");
    293293        ok( $newstamp <= $oldstamp, " ... added record expires before existing active-after record goes active" );
    294294      } else {
Note: See TracChangeset for help on using the changeset viewer.