aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2021-07-03 10:46:33 +0200
committerChristian Tismer <tismer@stackless.com>2021-07-06 18:06:25 +0200
commit10abd17ffb8826e4aa5861f89642c46c47b641a8 (patch)
tree25c6c150c1cbbc5cd793b6e6148fcefc2b18a83f /sources/pyside6/tests/QtWidgets
parent57500ee1a277dd36fc650baa1af989a648dec9a7 (diff)
pathlib: support all cases which are found in the examples
Wherever possible/useful, os.fspath was removed and the according pathlike modification inserted. This is still not the awaited end of the conversion, but a good step forward. Task-number: PYSIDE-1499 Pick-to: 6.1 Change-Id: I0a22ddeec06ada05dc4a97ed104d06f5f1bbf472 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtWidgets')
-rw-r--r--sources/pyside6/tests/QtWidgets/qimage_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/qimage_test.py b/sources/pyside6/tests/QtWidgets/qimage_test.py
index 216126df9..6d15d8c3e 100644
--- a/sources/pyside6/tests/QtWidgets/qimage_test.py
+++ b/sources/pyside6/tests/QtWidgets/qimage_test.py
@@ -282,7 +282,7 @@ class QImageTest(UsesQApplication):
'''Test if the QImage signatures receiving string buffers exist.'''
file = Path(__file__).resolve().parent / 'sample.png'
self.assertTrue(file.is_file())
- img0 = QImage(os.fspath(file))
+ img0 = QImage(file)
# btw let's test the bits() method
img1 = QImage(img0.bits(), img0.width(), img0.height(), img0.format())