Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simonharrer committed Jun 13, 2024
1 parent 15a7871 commit ad00834
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datacontract/data_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ def test(self) -> Run:
server_name = "examples"
server = self._get_examples_server(data_contract, run, tmp_dir)
if self._server:
server = data_contract.servers.get(self._server)
server_name = self._server
server = data_contract.servers.get(server_name)
else:
server_name = list(data_contract.servers.keys())[0]
server = data_contract.servers.get(server_name)
Expand Down

0 comments on commit ad00834

Please sign in to comment.