fixing name reuse in test
This commit is contained in:
parent
e30c6c2250
commit
7a43eaa30f
|
@ -492,7 +492,7 @@ def test_recycling_container(user: UserClient):
|
||||||
@pytest.mark.mvp
|
@pytest.mark.mvp
|
||||||
def test_reuse(user: UserClient):
|
def test_reuse(user: UserClient):
|
||||||
snap, _ = user.post(file('basic.snapshot'), res=models.Snapshot)
|
snap, _ = user.post(file('basic.snapshot'), res=models.Snapshot)
|
||||||
action = {'type': models.Reuse.t, 'devices': [snap['device']['id']]}
|
action = {'type': models.Use.t, 'devices': [snap['device']['id']]}
|
||||||
action, _ = user.post(action, res=models.Action)
|
action, _ = user.post(action, res=models.Action)
|
||||||
device, _ = user.get(res=Device, item=snap['device']['devicehubID'])
|
device, _ = user.get(res=Device, item=snap['device']['devicehubID'])
|
||||||
assert device['actions'][-1]['id'] == action['id']
|
assert device['actions'][-1]['id'] == action['id']
|
||||||
|
|
Reference in New Issue