File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
43
43
assert has_gte_version (TMUX_MIN_VERSION )
44
44
assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
45
45
assert (
46
- "%s-master" % TMUX_MAX_VERSION == get_version ()
46
+ get_version () == "%s-master" % TMUX_MAX_VERSION
47
47
), "Is the latest supported version with -master appended"
48
48
49
49
@@ -81,7 +81,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
81
81
assert has_gte_version (TMUX_MIN_VERSION )
82
82
assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
83
83
assert (
84
- "%s-openbsd" % TMUX_MAX_VERSION == get_version ()
84
+ get_version () == "%s-openbsd" % TMUX_MAX_VERSION
85
85
), "Is the latest supported version with -openbsd appended"
86
86
87
87
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
43
43
assert has_gte_version (TMUX_MIN_VERSION )
44
44
assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
45
45
assert (
46
- "%s-master" % TMUX_MAX_VERSION == get_version ()
46
+ get_version () == "%s-master" % TMUX_MAX_VERSION
47
47
), "Is the latest supported version with -master appended"
48
48
49
49
@@ -81,7 +81,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
81
81
assert has_gte_version (TMUX_MIN_VERSION )
82
82
assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
83
83
assert (
84
- "%s-openbsd" % TMUX_MAX_VERSION == get_version ()
84
+ get_version () == "%s-openbsd" % TMUX_MAX_VERSION
85
85
), "Is the latest supported version with -openbsd appended"
86
86
87
87
You can’t perform that action at this time.
0 commit comments