Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tests/multihost/alltests/test_kcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ def test_refresh_contain_timestamp(self,
for _ in range(12):
time.sleep(10)
grep_cmd = multihost.client[0].run_command(
f"grep 'calling ldap_search_ext with' {log_location}",
f"grep 'ldap_search_ext called:' {log_location}",
raiseonerr=False)
if grep_cmd.returncode == 0:
break
else:
pytest.fail("Failed to find 'calling ldap_search_ext with' in log file")
pytest.fail("Failed to find 'ldap_search_ext called:' in log file")
assert 'modifyTimestamp>=' not in grep_cmd.stdout_text

@pytest.mark.tier1_2
Expand Down
Loading