test: fix missing cases in bankmachine test

This commit is contained in:
Jędrzej Boczar 2020-04-08 10:30:36 +02:00
parent 36d62d5301
commit e74a2e6a02
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ class TestBankMachine(unittest.TestCase):
def test_burst_no_request_lost(self):
# Verify that no request is lost in fast bursts of requests regardless of cmd_buffer_depth
for cmd_buffer_depth in [8]:
for cmd_buffer_depth in [8, 1, 0]:
settings = dict(cmd_buffer_depth=cmd_buffer_depth)
with self.subTest(**settings):
dut = BankMachineDUT(1, controller_settings=settings)