Skip to content

Commit

Permalink
test: fix docker tests by using correct names
Browse files Browse the repository at this point in the history
Classic not sure how this ever worked.
  • Loading branch information
jrdh committed Aug 11, 2024
1 parent 459f4d4 commit dc97488
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

@pytest.fixture
def config(tmp_path: Path) -> Config:
mongo_config = MongoConfig("localhost", 27017)
elasticsearch_config = ElasticsearchConfig(["http://localhost:9200"])
mongo_config = MongoConfig("mongo", 27017)
elasticsearch_config = ElasticsearchConfig(["http://es:9200"])
portal_config = PortalConfig(
"http://10.0.11.20", "postgres://ckan:password@db/ckan", "admin"
"http://localhost", "postgres://ckan:password@db/ckan", "admin"
)
return Config(
data_path=tmp_path / "data",
Expand Down

0 comments on commit dc97488

Please sign in to comment.