Skip to content

Commit 8f3fa68

Browse files
nficanoclaude
andcommitted
Scrub references to other projects (fizzpop, claude-code, openclaw)
Replace personal/project identifiers with neutral examples: - dev.fizzpop.arcp -> dev.arcp (Java/Kotlin packages) - github.com/fizzpop/arcp{,-go} -> github.com/agentruntimecontrolprotocol/{kotlin-sdk,go-sdk} - 'claude-code' -> 'example-client'; 'openclaw' -> 'example-runtime' - 'telegram:nick' -> 'chat:operator'; 'nick@*' -> 'alice@example.com' Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 118f001 commit 8f3fa68

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

spec/unit/store/event_log_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,18 +95,18 @@ def self.now
9595
describe 'idempotent outcome storage' do
9696
it 'records and looks up outcomes by (principal, key)' do
9797
newly = log.record_idempotent_outcome(
98-
session_principal: 'nick@example.com',
98+
session_principal: 'alice@example.com',
9999
idempotency_key: 'refund-1',
100100
outcome: { status: 'ok', amount: 100 }
101101
)
102102
expect(newly).to be(true)
103103
again = log.record_idempotent_outcome(
104-
session_principal: 'nick@example.com',
104+
session_principal: 'alice@example.com',
105105
idempotency_key: 'refund-1',
106106
outcome: { status: 'changed' }
107107
)
108108
expect(again).to be(false)
109-
stored = log.lookup_idempotent_outcome(session_principal: 'nick@example.com', idempotency_key: 'refund-1')
109+
stored = log.lookup_idempotent_outcome(session_principal: 'alice@example.com', idempotency_key: 'refund-1')
110110
expect(stored).to eq(status: 'ok', amount: 100)
111111
end
112112
end

0 commit comments

Comments
 (0)