fixing actions in tests

This commit is contained in:
Cayo Puigdefabregas 2022-06-01 15:54:09 +02:00
parent 8ea0f028d6
commit 29ef48c5b2
1 changed files with 8 additions and 8 deletions

View File

@ -815,7 +815,7 @@ def test_action_allocate_deallocate_error(user3: UserClientFlask):
user3.post(uri, data=data) user3.post(uri, data=data)
assert dev.allocated_status.type == 'Allocate' assert dev.allocated_status.type == 'Allocate'
assert len(dev.actions) == 13 assert len(dev.actions) == 11
data = { data = {
'csrf_token': generate_csrf(), 'csrf_token': generate_csrf(),
@ -829,7 +829,7 @@ def test_action_allocate_deallocate_error(user3: UserClientFlask):
body, status = user3.post(uri, data=data) body, status = user3.post(uri, data=data)
assert status == '200 OK' assert status == '200 OK'
assert dev.allocated_status.type == 'Deallocate' assert dev.allocated_status.type == 'Deallocate'
assert len(dev.actions) == 14 assert len(dev.actions) == 12
# is not possible to do an allocate between an allocate and an deallocate # is not possible to do an allocate between an allocate and an deallocate
data = { data = {
@ -858,7 +858,7 @@ def test_action_allocate_deallocate_error(user3: UserClientFlask):
} }
user3.post(uri, data=data) user3.post(uri, data=data)
assert len(dev.actions) == 11 assert len(dev.actions) == 12
@pytest.mark.mvp @pytest.mark.mvp
@ -893,7 +893,7 @@ def test_action_allocate_deallocate_error2(user3: UserClientFlask):
} }
body, status = user3.post(uri, data=data) body, status = user3.post(uri, data=data)
assert status == '200 OK' assert status == '200 OK'
assert len(dev.actions) == 14 assert len(dev.actions) == 12
data = { data = {
'csrf_token': generate_csrf(), 'csrf_token': generate_csrf(),
@ -907,7 +907,7 @@ def test_action_allocate_deallocate_error2(user3: UserClientFlask):
uri = '/inventory/action/allocate/add/' uri = '/inventory/action/allocate/add/'
user3.post(uri, data=data) user3.post(uri, data=data)
assert len(dev.actions) == 15 assert len(dev.actions) == 13
data = { data = {
'csrf_token': generate_csrf(), 'csrf_token': generate_csrf(),
@ -918,7 +918,7 @@ def test_action_allocate_deallocate_error2(user3: UserClientFlask):
'end_users': 2, 'end_users': 2,
} }
user3.post(uri, data=data) user3.post(uri, data=data)
assert len(dev.actions) == 16 assert len(dev.actions) == 14
data = { data = {
'csrf_token': generate_csrf(), 'csrf_token': generate_csrf(),
@ -929,7 +929,7 @@ def test_action_allocate_deallocate_error2(user3: UserClientFlask):
'end_users': 2, 'end_users': 2,
} }
user3.post(uri, data=data) user3.post(uri, data=data)
assert len(dev.actions) == 17 assert len(dev.actions) == 15
data = { data = {
'csrf_token': generate_csrf(), 'csrf_token': generate_csrf(),
@ -940,7 +940,7 @@ def test_action_allocate_deallocate_error2(user3: UserClientFlask):
'end_users': 2, 'end_users': 2,
} }
user3.post(uri, data=data) user3.post(uri, data=data)
assert len(dev.actions) == 18 assert len(dev.actions) == 16
@pytest.mark.mvp @pytest.mark.mvp