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:
4343 assert has_gte_version (TMUX_MIN_VERSION )
4444 assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
4545 assert (
46- "%s-master" % TMUX_MAX_VERSION == get_version ()
46+ get_version () == "%s-master" % TMUX_MAX_VERSION
4747 ), "Is the latest supported version with -master appended"
4848
4949
@@ -81,7 +81,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
8181 assert has_gte_version (TMUX_MIN_VERSION )
8282 assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
8383 assert (
84- "%s-openbsd" % TMUX_MAX_VERSION == get_version ()
84+ get_version () == "%s-openbsd" % TMUX_MAX_VERSION
8585 ), "Is the latest supported version with -openbsd appended"
8686
8787
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:
4343 assert has_gte_version (TMUX_MIN_VERSION )
4444 assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
4545 assert (
46- "%s-master" % TMUX_MAX_VERSION == get_version ()
46+ get_version () == "%s-master" % TMUX_MAX_VERSION
4747 ), "Is the latest supported version with -master appended"
4848
4949
@@ -81,7 +81,7 @@ def mock_tmux_cmd(*args: t.Any, **kwargs: t.Any) -> Hi:
8181 assert has_gte_version (TMUX_MIN_VERSION )
8282 assert has_gt_version (TMUX_MAX_VERSION ), "Greater than the max-supported version"
8383 assert (
84- "%s-openbsd" % TMUX_MAX_VERSION == get_version ()
84+ get_version () == "%s-openbsd" % TMUX_MAX_VERSION
8585 ), "Is the latest supported version with -openbsd appended"
8686
8787
You can’t perform that action at this time.
0 commit comments