Skip to content

Commit c4f6f81

Browse files
fix(test): use get_field("author") matching accessor convention
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 88767e8 commit c4f6f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_package_validator_for_v2_0_0.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_authors_array_access(self):
3333

3434
service = PackageService()
3535
service.load_metadata(metadata)
36-
authors = service.get_field("authors")
36+
authors = service.get_field("author")
3737
self.assertIsInstance(authors, list)
3838
self.assertEqual(len(authors), 2)
3939
self.assertEqual(authors[0]["name"], "Author One")

0 commit comments

Comments
 (0)