Skip to content

Commit

Permalink
OM-243: fixed mutation id in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sniedzielski committed Aug 20, 2024
1 parent 0369735 commit d2110bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worker_voucher/tests/test_create_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_create_worker_success(self):

def test_create_existing_worker_success(self):
InsureeConfig.reset_validation_settings()
mutation_id = "39g453h5g92h04gh34"
mutation_id = "39g453h5g92h04gh35"
payload = gql_mutation_create_worker % (
self.existing_worker.chf_id,
self.last_name,
Expand All @@ -90,7 +90,7 @@ def test_create_existing_worker_success(self):

def test_create_worker_false_not_existing_economic_unit(self):
InsureeConfig.reset_validation_settings()
mutation_id = "39g453h5g92h04gh34"
mutation_id = "39g453h5g92h04gh36"
national_id = F"{generate_random_insuree_number()}"
payload = gql_mutation_create_worker % (
national_id,
Expand All @@ -110,7 +110,7 @@ def test_create_worker_false_not_existing_economic_unit(self):

def test_create_worker_already_assigned_to_economic_unit(self):
InsureeConfig.reset_validation_settings()
mutation_id = "39g453h5g92h04gh34"
mutation_id = "39g453h5g92h04gh37"
national_id = F"{generate_random_insuree_number()}"
payload = gql_mutation_create_worker % (
national_id,
Expand Down

0 comments on commit d2110bf

Please sign in to comment.