tests: Ensure objects are free'ed at the end of tests

The objects may not be garbage collected otherwise.
This commit is contained in:
Benjamin Berg
2019-12-05 15:49:43 +01:00
committed by Benjamin Berg
parent 4948a85e97
commit 1d1c39c234
3 changed files with 10 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ c.enumerate()
devices = c.get_devices()
d = devices[0]
del devices
d.open_sync()
@@ -24,6 +25,9 @@ img = d.capture_sync(True)
d.close_sync()
del d
del c
width = img.get_width()
height = img.get_height()