Skip to content

Commit eb37089

Browse files
committed
test: assert all 10 QAM dropdown options in render test
1 parent 7717d76 commit eb37089

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_smart_capture_api.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,13 @@ def test_settings_contains_qam_dropdown_options(self, client):
161161
resp = client.get("/settings")
162162
html = resp.data.decode()
163163
assert 'value="4096QAM"' in html
164+
assert 'value="2048QAM"' in html
165+
assert 'value="1024QAM"' in html
164166
assert 'value="512QAM"' in html
165167
assert 'value="256QAM"' in html
168+
assert 'value="128QAM"' in html
166169
assert 'value="64QAM"' in html
170+
assert 'value="32QAM"' in html
167171
assert 'value="16QAM"' in html
168172
assert 'value="8QAM"' in html
169173

0 commit comments

Comments
 (0)