xfstestsdb 1.6

Signed-off-by: Anna Schumaker <anna@nowheycreamery.com>
This commit is contained in:
Anna Schumaker 2023-11-07 14:11:51 -05:00
parent 3cc3412c6d
commit 06d10cf883
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ class TestXfstestsdb(unittest.TestCase):
def test_version(self, mock_stdout: io.StringIO): def test_version(self, mock_stdout: io.StringIO):
"""Test printing version information.""" """Test printing version information."""
self.assertEqual(xfstestsdb.MAJOR, 1) self.assertEqual(xfstestsdb.MAJOR, 1)
self.assertEqual(xfstestsdb.MINOR, 5) self.assertEqual(xfstestsdb.MINOR, 6)
self.xfstestsdb.run(["--version"]) self.xfstestsdb.run(["--version"])
self.assertEqual(mock_stdout.getvalue(), "xfstestsdb v1.5-debug\n") self.assertEqual(mock_stdout.getvalue(), "xfstestsdb v1.6-debug\n")

View File

@ -15,7 +15,7 @@ from . import untag
from . import xunit from . import xunit
MAJOR = 1 MAJOR = 1
MINOR = 5 MINOR = 6
class Command: class Command: