Skip to content

Commit 8d73223

Browse files
committed
Fix typos.
1 parent ff30b97 commit 8d73223

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

test/TestDataLayer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def tst_magic_constant05(self) -> str:
2424
# ------------------------------------------------------------------------------------------------------------------
2525
def tst_strtr(self, p1: int | None, p100: int | None, p10: int | None) -> Dict[str, Any]:
2626
"""
27-
Test strtr does not mix up parameters with nearly same name.
27+
Test strtr does not mix up parameters with nearly the same names.
2828
2929
:param p1: Parameter of type int.
3030
RDBMS data type: int
@@ -121,7 +121,7 @@ def tst_test_execute_leading_queries(self) -> str:
121121
# ------------------------------------------------------------------------------------------------------------------
122122
def tst_test_illegal_query(self) -> List[Dict[str, Any]]:
123123
"""
124-
Test for illegal query.
124+
Test for an illegal query.
125125
"""
126126
params = {}
127127
query = '\n' * 5
@@ -142,7 +142,7 @@ def tst_test_illegal_query(self) -> List[Dict[str, Any]]:
142142
# ------------------------------------------------------------------------------------------------------------------
143143
def tst_test_last_insert_id(self, p_tst_test: str | None) -> int:
144144
"""
145-
Test case for designation type last_insert_id.
145+
Test case for the designation type last_insert_id.
146146
147147
:param p_tst_test: Some value.
148148
RDBMS data type: text

test/psql/tst_strtr.psql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Test strtr does not mix up parameters with nearly same name.
2+
* Test strtr does not mix up parameters with nearly the same names.
33
*
44
* @param int :p1 Parameter of type int.
55
* @param int :p100 Parameter of type int.

test/psql/tst_test_illegal_query.psql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Test for illegal query.
2+
* Test for an illegal query.
33
*
44
* @type rows
55
*/

test/psql/tst_test_last_insert_id.psql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Test case for designation type last_insert_id.
2+
* Test case for the designation type last_insert_id.
33
*
44
* @param text :p_tst_test Some value.
55
*

0 commit comments

Comments
 (0)