File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
21
21
([ #535 ] ( https://github.com/PyFilesystem/pyfilesystem2/issues/535 ) ).
22
22
- Fixed a bug where files could be truncated or deleted when moved / copied onto itself.
23
23
Closes [ #546 ] ( https://github.com/PyFilesystem/pyfilesystem2/issues/546 )
24
+ - TestCase method aliases removed in Python 3.12 were replaced and now work with all Python versions.
25
+ Closes [ #568 ] ( https://github.com/PyFilesystem/pyfilesystem2/issues/568 )
24
26
25
27
## [ 2.4.16] - 2022-05-02
26
28
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ Many thanks to the following developers for contributing to this project:
41
41
- [ @sqwishy ] ( https://github.com/sqwishy )
42
42
- [ Sven Schliesing] ( https://github.com/muffl0n )
43
43
- [ Thomas Feldmann] ( https://github.com/tfeldmann )
44
+ - [ Tomáš Hrnčiar] ( https://github.com/hrnciar )
44
45
- [ Tim Gates] ( https://github.com/timgates42/ )
45
46
- [ @tkossak ] ( https://github.com/tkossak )
46
47
- [ Todd Levi] ( https://github.com/televi )
Original file line number Diff line number Diff line change @@ -1082,7 +1082,7 @@ def test_remove(self):
1082
1082
self .fs .makedirs ("foo/bar/baz/" )
1083
1083
1084
1084
error_msg = "resource 'foo/bar/egg/test.txt' not found"
1085
- assertRaisesRegex = getattr (self , "assertRaisesRegex" , self .assertRaisesRegexp )
1085
+ assertRaisesRegex = getattr (self , "assertRaisesRegex" , self .assertRaisesRegex )
1086
1086
with assertRaisesRegex (errors .ResourceNotFound , error_msg ):
1087
1087
self .fs .remove ("foo/bar/egg/test.txt" )
1088
1088
You can’t perform that action at this time.
0 commit comments