From 255a8bdde157e6a3e9ba51e65fb0cd9e522c437b Mon Sep 17 00:00:00 2001 From: Justin Stephenson Date: Wed, 13 Jan 2021 09:35:12 -0500 Subject: [PATCH] Set timezone for Logs Correlation test Fixes a local timezone issue with centos-8-stream --- test/check-application | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/check-application b/test/check-application index 9b73d48..8ed7076 100755 --- a/test/check-application +++ b/test/check-application @@ -283,7 +283,9 @@ class TestApplication(MachineCase): self.assertNotEqual(b.attr(".dragnpan", "scrollLeft"), 0) def testLogCorrelation(self): - b, _ = self._login() + b, m = self._login() + # make sure system is on expected timezone EST + m.execute("timedatectl set-timezone America/New_York") # select the recording with the extra logs self._sel_rec('rec2') b.click("#btn-logs-view .pf-c-expandable-section__toggle")