Skip to content

Commit 164e36d

Browse files
committed
docs: use a placeholder project id in the captured error message
The 403 fixture in test_errors.py was copied verbatim from a live API response, so it carried the real project id of the account used for verification. deferred.md named the same project. Neither is a secret, but this repository is about to be public and there is no reason to publish the id. The classifier matches on the phrases "has not been used in project" and "it is disabled" (errors.py:122-123), never on the id, so substituting it changes nothing: the full suite passes unchanged. What the comment records — that this message was observed verbatim from a live 403 on 2026-09-01 — survives, because the sentence structure is what makes it evidence.
1 parent 19f2dfe commit 164e36d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

specs/001-gcp-support-mcp/deferred.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ without reading the conversation that produced them.
1414

1515
## The one blocker behind two of them
1616

17-
`projects/kktae-demo` — the project used for live verification — **has no paid
17+
`projects/my-project` — the project used for live verification — **has no paid
1818
support plan.** Reading works; creating a case does not:
1919

2020
```

tests/unit/test_errors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
PERM_403 = "Permission 'cloudsupport.cases.list' denied on resource."
1616
# Observed verbatim from a live 403 on 2026-09-01.
1717
DISABLED_403 = (
18-
"Google Cloud Support API has not been used in project kktae-demo before or it is "
18+
"Google Cloud Support API has not been used in project my-project before or it is "
1919
"disabled. Enable it by visiting https://console.developers.google.com/apis/api/"
20-
"cloudsupport.googleapis.com/overview?project=kktae-demo then retry."
20+
"cloudsupport.googleapis.com/overview?project=my-project then retry."
2121
)
2222

2323

0 commit comments

Comments
 (0)