diff options
Diffstat (limited to 'src/DotNetOAuth.Test')
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/TestBadChannel.cs | 4 | ||||
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/TestChannel.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/TestBadChannel.cs b/src/DotNetOAuth.Test/Mocks/TestBadChannel.cs index 5d6802f..1002cbc 100644 --- a/src/DotNetOAuth.Test/Mocks/TestBadChannel.cs +++ b/src/DotNetOAuth.Test/Mocks/TestBadChannel.cs @@ -43,11 +43,11 @@ namespace DotNetOAuth.Test.Mocks { return base.ReadFromRequest(request);
}
- protected internal override IProtocolMessage Request(IDirectedProtocolMessage request) {
+ protected override IProtocolMessage RequestInternal(IDirectedProtocolMessage request) {
throw new NotImplementedException();
}
- protected internal override IProtocolMessage ReadFromResponse(System.IO.Stream responseStream) {
+ protected override IProtocolMessage ReadFromResponseInternal(System.IO.Stream responseStream) {
throw new NotImplementedException();
}
diff --git a/src/DotNetOAuth.Test/Mocks/TestChannel.cs b/src/DotNetOAuth.Test/Mocks/TestChannel.cs index 359019f..5663ec2 100644 --- a/src/DotNetOAuth.Test/Mocks/TestChannel.cs +++ b/src/DotNetOAuth.Test/Mocks/TestChannel.cs @@ -16,11 +16,11 @@ namespace DotNetOAuth.Test.Mocks { : base(new TestMessageTypeProvider()) {
}
- protected internal override IProtocolMessage Request(IDirectedProtocolMessage request) {
+ protected override IProtocolMessage RequestInternal(IDirectedProtocolMessage request) {
throw new NotImplementedException("Request");
}
- protected internal override IProtocolMessage ReadFromResponse(System.IO.Stream responseStream) {
+ protected override IProtocolMessage ReadFromResponseInternal(System.IO.Stream responseStream) {
throw new NotImplementedException("ReadFromResponse");
}
|