File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -62,22 +62,22 @@ def test_is_file(self):
6262 assert not self .path .is_file ()
6363
6464 def test_is_mount (self ):
65- assert self .path .is_mount () == False
65+ assert self .path .is_mount () is False
6666
6767 def test_is_symlink (self ):
68- assert self .path .is_symlink () == False
68+ assert self .path .is_symlink () is False
6969
7070 def test_is_socket (self ):
71- assert self .path .is_socket () == False
71+ assert self .path .is_socket () is False
7272
7373 def test_is_fifo (self ):
74- assert self .path .is_fifo () == False
74+ assert self .path .is_fifo () is False
7575
7676 def test_is_block_device (self ):
77- assert self .path .is_block_device () == False
77+ assert self .path .is_block_device () is False
7878
7979 def test_is_char_device (self ):
80- assert self .path .is_char_device () == False
80+ assert self .path .is_char_device () is False
8181
8282 def test_iterdir (self , local_testdir ):
8383 pl_path = Path (local_testdir )
You can’t perform that action at this time.
0 commit comments