tb: mii_elastic_buffer: Remove unnecessary try/except

The value will be checked for Xs in the following comparison.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
Sean Anderson 2023-03-01 15:49:10 -05:00
parent bc78d56f05
commit 0f6d4b166f
1 changed files with 0 additions and 4 deletions

View File

@ -73,10 +73,6 @@ async def test_elastic(buf):
last = None
for nibble in outs:
if nibble is not None:
try:
int(nibble)
except:
raise
assert nibble != last
last = nibble