Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit c6da8c9

Browse files
committed
fix: fix tests
1 parent 85274b3 commit c6da8c9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

graphql_api/tests/test_test_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_fetch_test_result_name_with_computed_name(self) -> None:
8686
repository(name: "%s") {
8787
... on Repository {
8888
testAnalytics {
89-
results {
89+
testResults {
9090
edges {
9191
node {
9292
name

graphql_api/types/test_results/test_results.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class TestDict(TypedDict):
1616
total_fail_count: int
1717
total_skip_count: int
1818
total_pass_count: int
19+
computed_name: str | None
1920

2021

2122
test_result_bindable = ObjectType("TestResult")

0 commit comments

Comments
 (0)