Changeset b11cc91 in trunk


Ignore:
Timestamp:
2021-05-07T14:48:50Z (4 years ago)
Author:
Itamar Turner-Trauring <itamar@…>
Branches:
master
Children:
04fc8e70
Parents:
6df076d
Message:

Integration test passed on Python 3.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified integration/test_servers_of_happiness.py

    r6df076d rb11cc91  
    4343
    4444    output = proto.output.getvalue()
    45     assert "shares could be placed on only" in output
     45    assert b"shares could be placed on only" in output
  • TabularUnified src/allmydata/web/root.py

    r6df076d rb11cc91  
    319319        version = server.get_version()
    320320        if version is not None:
    321             description[u"version"] = version["application-version"]
     321            description[u"version"] = version[b"application-version"]
    322322
    323323        return description
Note: See TracChangeset for help on using the changeset viewer.