From 096e5af08b1677f517ba97e14b137c993083bdf5 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 29 Aug 2019 10:02:29 +0100 Subject: [PATCH] Fix graphics tests to pass default replay options to OpenCapture --- util/test/rdtest/analyse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/test/rdtest/analyse.py b/util/test/rdtest/analyse.py index a16b63804..e02ff265c 100644 --- a/util/test/rdtest/analyse.py +++ b/util/test/rdtest/analyse.py @@ -40,7 +40,7 @@ def open_capture(filename="", cap: rd.CaptureFile=None): cap.Shutdown() raise RuntimeError("{} capture cannot be replayed".format(api)) - status, controller = cap.OpenCapture(None) + status, controller = cap.OpenCapture(rd.ReplayOptions(), None) if own_cap: cap.Shutdown()