Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(708)

Unified Diff: logdog/client/butlerlib/streamclient/client_test.go

Issue 2737603003: Butler stream servers can generate client address. (Closed)
Patch Set: better comment Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: logdog/client/butlerlib/streamclient/client_test.go
diff --git a/logdog/client/butlerlib/streamclient/client_test.go b/logdog/client/butlerlib/streamclient/client_test.go
index 05bd9dec392d9a99316075b58b97b5971f22171c..6a4eb852b99835e8fc6d751c0920b9b2612370b7 100644
--- a/logdog/client/butlerlib/streamclient/client_test.go
+++ b/logdog/client/butlerlib/streamclient/client_test.go
@@ -79,9 +79,9 @@ func TestClient(t *testing.T) {
Convey(`That can instantiate new Streams.`, func() {
stream, err := client.NewStream(flags)
So(err, ShouldBeNil)
- So(stream, ShouldHaveSameTypeAs, &streamImpl{})
+ So(stream, ShouldHaveSameTypeAs, &BaseStream{})
- si := stream.(*streamImpl)
+ si := stream.(*BaseStream)
So(si.WriteCloser, ShouldHaveSameTypeAs, &testStreamWriteCloser{})
tswc := si.WriteCloser.(*testStreamWriteCloser)
« no previous file with comments | « logdog/client/butlerlib/streamclient/client_namedPipe_windows.go ('k') | logdog/client/butlerlib/streamclient/local.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698