diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-11-22 11:17:27 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-11-22 13:38:10 +0200 |
| commit | d3a6af081ed18ce245ccaa89d6096ac034bb09cf (patch) | |
| tree | fef8754aebfcfaa61e961e767228c42c605e36d2 /tests/topotests/srv6_locator/test_srv6_locator.py | |
| parent | a5722d5a78c40286bbb68d3b6b611f05e3807683 (diff) | |
tests: Set minimum wait time for tests to 5 seconds
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'tests/topotests/srv6_locator/test_srv6_locator.py')
| -rwxr-xr-x | tests/topotests/srv6_locator/test_srv6_locator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/srv6_locator/test_srv6_locator.py b/tests/topotests/srv6_locator/test_srv6_locator.py index bc5fa409d2..b918da0655 100755 --- a/tests/topotests/srv6_locator/test_srv6_locator.py +++ b/tests/topotests/srv6_locator/test_srv6_locator.py @@ -94,12 +94,12 @@ def test_srv6(): def check_srv6_locator(router, expected_file): func = functools.partial(_check_srv6_locator, router, expected_file) - success, result = topotest.run_and_expect(func, None, count=5, wait=0.5) + success, result = topotest.run_and_expect(func, None, count=10, wait=0.5) assert result is None, "Failed" def check_sharpd_chunk(router, expected_file): func = functools.partial(_check_sharpd_chunk, router, expected_file) - success, result = topotest.run_and_expect(func, None, count=5, wait=0.5) + success, result = topotest.run_and_expect(func, None, count=10, wait=0.5) assert result is None, "Failed" # FOR DEVELOPER: |
