Skip to content

Commit 1364467

Browse files
committed
Fix typo
1 parent 80b609f commit 1364467

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ packages = ["src/firebird"]
5454
dependencies = [
5555
]
5656

57+
[tool.hatch.envs.hatch-test]
58+
extra-args = ["-vv"]
59+
dependencies = [
60+
]
61+
5762
[[tool.hatch.envs.hatch-test.matrix]]
5863
python = ["3.11", "3.12", "3.13"]
5964

tests/test_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_collections.py
6+
# FILE: tests/test_collections.py
77
# DESCRIPTION: Tests for firebird.base.collections
88
# CREATED: 20.9.2019
99
#

tests/test_hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_hooks.py
6+
# FILE: tests/test_hooks.py
77
# DESCRIPTION: Tests for firebird.base.hooks
88
# CREATED: 14.5.2020
99
#

tests/test_logging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_logging.py
6+
# FILE: tests/test_logging.py
77
# DESCRIPTION: Tests for firebird.base.logging
88
# CREATED: 21.5.2020
99
#
@@ -630,4 +630,4 @@ def test_log_record_standard_attributes(caplog):
630630
assert rec.topic == topic
631631
assert rec.context == "Context data"
632632

633-
log.logger.removeHandler(caplog.handler)
633+
log.logger.removeHandler(caplog.handler)

tests/test_protobuf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_protobuf.py
6+
# FILE: tests/test_protobuf.py
77
# DESCRIPTION: Tests for firebird.base.protobuf
88
# CREATED: 21.5.2020
99
#

tests/test_strconv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_strconv.py
6+
# FILE: tests/test_strconv.py
77
# DESCRIPTION: Tests for firebird.base.strconv
88
# CREATED: 21.1.2025
99
#

tests/test_trace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
#
55
# PROGRAM/MODULE: firebird-base
6-
# FILE: test/test_trace.py
6+
# FILE: tests/test_trace.py
77
# DESCRIPTION: Tests for firebird.base.trace
88
# CREATED: 21.5.2020
99
#

0 commit comments

Comments
 (0)