Skip to content

Commit c98fae2

Browse files
committed
fix: fix ci, add .DS_Store to .gitignore
1 parent 643afc3 commit c98fae2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
.idea/
33
.vscode/
44

5+
# System files
6+
.DS_Store
7+
58
# Byte-compiled / optimized / DLL files / logs
69
__pycache__/
710
*.py[cod]

tests/common/test_descripter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def test_get_method_descriptor_missing_name_and_func(self):
467467

468468
def test_get_method_descriptor_missing_params_and_func(self):
469469
"""Test error when neither params nor function is provided."""
470-
with pytest.raises(ValueError, match="Must provide either 'params' or a 'func'"):
470+
with pytest.raises(ValueError, match="Must provide either 'param_types' or a 'func' to infer parameter details."):
471471
get_method_descriptor(CallType.UNARY, name="test_method")
472472

473473
def test_get_method_descriptor_return_param_override(self):

0 commit comments

Comments
 (0)