summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-08-06 02:16:37 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-08-08 01:40:50 +0300
commitb94abf0327b2ba3731b6c415be73a163e4754aee (patch)
tree9a69baff2973ddcb56d04d0498a492b6cb1326c5
parent85327adcf9b3007f7dd06144cfbed90959b82b53 (diff)
tests: crc: Fix AtomicRequest usage
Commit 3cd7e6814cea ("kmstest.py: Fix CRTC disabling") modified the CRC test to use the kmstest.AtomicRequest class, but failed to pass the correct argument to the constructor. Fix it. Fixes: 3cd7e6814cea ("kmstest.py: Fix CRTC disabling") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rwxr-xr-xtests/kms-test-crc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms-test-crc.py b/tests/kms-test-crc.py
index d936d1d..dcdfcd4 100755
--- a/tests/kms-test-crc.py
+++ b/tests/kms-test-crc.py
@@ -58,7 +58,7 @@ class CRCTest(kmstest.KMSTest):
self.fail("atomic mode set failed with %d" % ret)
continue
- req = kmstest.AtomicRequest(self.card)
+ req = kmstest.AtomicRequest(self)
offset = 100
for plane in planes: