Skip to content

Commit

Permalink
change repo name of test_connectivity setup
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasG0 committed Nov 5, 2024
1 parent 6b223a4 commit 4926295
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ async def initial_dataset(
await jesko.save(db=db)

bus_simulator.service.cache = RedisCache()
FileRepo(name="car-dealership", sources_directory=git_repos_source_dir_module_scope)
FileRepo(name="dealership-car", sources_directory=git_repos_source_dir_module_scope)
client_repository = await client.create(
kind=InfrahubKind.REPOSITORY,
data={"name": "car-dealership", "location": f"{git_repos_source_dir_module_scope}/car-dealership"},
data={"name": "dealership-car", "location": f"{git_repos_source_dir_module_scope}/dealership-car"},
)
await client_repository.save()
return client_repository.id
Expand Down Expand Up @@ -118,7 +118,7 @@ async def test_happy_pipeline(self, db: InfrahubDatabase, happy_dataset: None, c
age_check = [validator for validator in peers.values() if validator.label.value == "Check: owner_age_check"][0]
assert age_check.conclusion.value.value == ValidatorConclusion.SUCCESS.value
repository_merge_conflict = [
validator for validator in peers.values() if validator.label.value == "Repository Validator: car-dealership"
validator for validator in peers.values() if validator.label.value == "Repository Validator: dealership-car"
][0]
assert repository_merge_conflict.conclusion.value.value == ValidatorConclusion.SUCCESS.value

Expand Down

0 comments on commit 4926295

Please sign in to comment.