This commit is contained in:
Cayo Puigdefabregas 2023-02-01 16:35:27 +01:00
parent 6b5db31922
commit 7dc3ac9530
2 changed files with 1 additions and 3 deletions

View File

@ -158,7 +158,7 @@ class DeviceView(View):
device_abstract=device_abstract,
device_real=device_real,
states=states,
abstract=abstract
abstract=abstract,
)
@auth.Auth.requires_auth

View File

@ -560,7 +560,6 @@ def test_get_device_permissions(
html, _ = client.get(res=d.Device, item=s['device']['devicehubID'], accept=ANY)
assert 'intel atom cpu n270 @ 1.60ghz' in html
assert '00:24:8C:7F:CF:2D 100 Mbps' in html
pc2, res2 = user2.get(res=d.Device, item=s['device']['devicehubID'], accept=ANY)
assert res2.status_code == 200
assert pc2 == html
@ -692,7 +691,6 @@ def test_device_public(user: UserClient, client: Client):
s, _ = user.post(file('asus-eee-1000h.snapshot.11'), res=m.Snapshot)
html, _ = client.get(res=d.Device, item=s['device']['devicehubID'], accept=ANY)
assert 'intel atom cpu n270 @ 1.60ghz' in html
assert '00:24:8C:7F:CF:2D 100 Mbps' in html
@pytest.mark.mvp