We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6d773 commit 0bb34c9Copy full SHA for 0bb34c9
1 file changed
tests/server/api/test_file_io_instrument.py
@@ -79,11 +79,8 @@ def test_suggest_path(
79
if touch
80
else not (visit_dir / dir_name).exists()
81
)
82
- assert (
83
- (visit_dir / dir_name / extra_dir).exists()
84
- if touch and extra_dir
85
- else not (visit_dir / dir_name / extra_dir).exists()
86
- )
+ if touch and extra_dir:
+ assert (visit_dir / dir_name / extra_dir).exists()
87
88
89
def test_make_rsyncer_destination():
0 commit comments