Skip to content

Commit

Permalink
FakeSocket no longer throws on Close(). Keeps an exception from happe…
Browse files Browse the repository at this point in the history
…ning in tests
  • Loading branch information
statianzo committed Jun 20, 2011
1 parent 58804f0 commit d1c827f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fleck.Tests/HandshakeHandlerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void Dispose()

public void Close()
{
throw new NotImplementedException();
Console.WriteLine("Closed");
}

public IAsyncResult BeginSend(IList<ArraySegment<byte>> buffers, SocketFlags socketFlags, AsyncCallback callback, object state)
Expand Down

0 comments on commit d1c827f

Please sign in to comment.