Merge "veyron/services/wsprd/identity: URL-encode origin names in blessing."
diff --git a/services/wsprd/wspr/pipe_test.go b/services/wsprd/wspr/pipe_test.go
index 8f2e89c..843d9a2 100644
--- a/services/wsprd/wspr/pipe_test.go
+++ b/services/wsprd/wspr/pipe_test.go
@@ -39,8 +39,8 @@
writer := testWriter{}
p.handleAssocIdentity(jsonIdentityData, lib.ClientWriter(&writer))
// Check that the pipe has the privateId
- if p.app.RT().Identity() != privateId {
- t.Errorf("p.privateId was not set. got: %v, expected: %v", p.app.RT().Identity(), identityData.Identity)
+ if p.controller.RT().Identity() != privateId {
+ t.Errorf("p.privateId was not set. got: %v, expected: %v", p.controller.RT().Identity(), identityData.Identity)
}
// Check that wspr idManager has the origin
_, err = wspr.idManager.Identity(identityData.Origin)