We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80128e3 commit a45dfd9Copy full SHA for a45dfd9
Lib/test/test_posix.py
@@ -1540,6 +1540,9 @@ def test_link_follow_symlinks(self):
1540
self.assertEqual(posix.lstat(link), posix.lstat(orig))
1541
elif default_no_follow:
1542
self.assertEqual(posix.lstat(link), posix.lstat(symlink))
1543
+ if sys.platform.startswith('wasi'):
1544
+ self.assertEqual(posix.lstat(link), posix.lstat(orig))
1545
+ self.assertEqual(posix.lstat(link), posix.lstat(symlink))
1546
1547
with self.subTest('follow_symlinks=False'):
1548
# follow_symlinks=False -> duplicate the symlink itself
0 commit comments