Skip to content

Commit 8975366

Browse files
Copilotpelikhan
andcommitted
Format code: remove trailing whitespace
Co-authored-by: pelikhan <[email protected]>
1 parent 5650af8 commit 8975366

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ jobs:
768768
if jq -e '.summary.total_tokens' logs_output.json > /dev/null 2>&1; then
769769
TOKEN_COUNT=$(jq '.summary.total_tokens' logs_output.json)
770770
echo "✅ Token count found: $TOKEN_COUNT"
771-
771+
772772
# Validate that token count is greater than 0
773773
if [ "$TOKEN_COUNT" -gt 0 ]; then
774774
echo "✅ Token count is greater than 0: $TOKEN_COUNT"

pkg/workflow/copilot_token_parsing_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func TestCopilotTokenCountAccumulation(t *testing.T) {
9797
if metrics.TokenUsage != expectedTokens {
9898
t.Errorf("Expected accumulated token count %d, got %d", expectedTokens, metrics.TokenUsage)
9999
}
100-
100+
101101
// Validate that token count is greater than 0 (as required by CI test)
102102
if metrics.TokenUsage <= 0 {
103103
t.Errorf("Token count should be greater than 0, got %d", metrics.TokenUsage)

0 commit comments

Comments
 (0)