/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_version_info.py

  • Committer: Jelmer Vernooij
  • Date: 2020-03-22 20:02:36 UTC
  • mto: (7490.7.7 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200322200236-fsbl91ktcn6fcbdd
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for version_info"""
18
18
 
19
 
from io import (
20
 
    BytesIO,
21
 
    StringIO,
22
 
    )
23
19
import os
24
20
 
25
21
from .. import (
27
23
    tests,
28
24
    version_info_formats,
29
25
    )
 
26
from ..sixish import (
 
27
    BytesIO,
 
28
    StringIO,
 
29
    )
30
30
from . import TestCaseWithTransport
31
31
from ..rio import read_stanzas, read_stanzas_unicode
32
32