Skip to content

Commit c2f390a

Browse files
committed
Fix typos
1 parent bf896f1 commit c2f390a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytest_postgresql/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def version(self) -> Any:
204204
version_string = subprocess.check_output([self.executable, "--version"]).decode("utf-8")
205205
except FileNotFoundError as ex:
206206
raise ExecutableMissingException(
207-
f"Could not found {self.executable}. Is PostgreSQL server installed? "
207+
f"Could not find {self.executable}. Is PostgreSQL server installed? "
208208
f"Alternatively pg_config installed might be from different "
209209
f"version that postgresql-server."
210210
) from ex

pytest_postgresql/factories/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def _pg_exe(executable: str | None, config: PostgreSQLConfig) -> str:
4545
try:
4646
pg_bindir = subprocess.check_output(["pg_config", "--bindir"], universal_newlines=True).strip()
4747
except FileNotFoundError as ex:
48-
raise ExecutableMissingException("Could not found pg_config executable. Is it in systenm $PATH?") from ex
48+
raise ExecutableMissingException("Could not find pg_config executable. Is it in system $PATH?") from ex
4949
postgresql_ctl = os.path.join(pg_bindir, "pg_ctl")
5050
return postgresql_ctl
5151

0 commit comments

Comments
 (0)