Changeset 636b8a9 in trunk


Ignore:
Timestamp:
2022-08-12T15:28:08Z (3 years ago)
Author:
Itamar Turner-Trauring <itamar@…>
Branches:
master
Children:
7dd346a
Parents:
d0208d00
git-author:
Itamar Turner-Trauring <itamar@…> (2022-08-12 15:28:03)
git-committer:
Itamar Turner-Trauring <itamar@…> (2022-08-12 15:28:08)
Message:

Fix a bytes-vs-str bug.

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/test/test_storage_web.py

    rd0208d00 r636b8a9  
    162162            s = remove_tags(html)
    163163            self.failUnlessIn(b"Total buckets: 0 (the number of", s)
    164             self.failUnless(b"Next crawl in 59 minutes" in s or "Next crawl in 60 minutes" in s, s)
     164            self.failUnless(b"Next crawl in 59 minutes" in s or b"Next crawl in 60 minutes" in s, s)
    165165        d.addCallback(_check2)
    166166        return d
Note: See TracChangeset for help on using the changeset viewer.