From 33753d457e0b5a856f43a087e607a85f915526d6 Mon Sep 17 00:00:00 2001 From: Martin Kepplinger Date: Tue, 14 Apr 2020 16:41:35 +0200 Subject: [PATCH] pytests/test_devfreq: test max_freq only min_freq is different on the devkit and the phone. It is not of much value to read min_freq if we read max_freq already, so remove that and become compatible with the devkit. Signed-off-by: Martin Kepplinger --- pytests/test_devfreq.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pytests/test_devfreq.py b/pytests/test_devfreq.py index 763c7c9..3b844ca 100644 --- a/pytests/test_devfreq.py +++ b/pytests/test_devfreq.py @@ -7,5 +7,4 @@ def test_devfreq_ddr(): def test_devfreq_freq(): - assert("25000000" in open("/sys/class/devfreq/3d400000.memory-controller/min_freq").read()) assert("800000000" in open("/sys/class/devfreq/3d400000.memory-controller/max_freq").read()) -- GitLab