Skip to content

Commit 98e103a

Browse files
author
Matthew Sackman
committed
Actually looked up overriding in C♯...
1 parent a713fc5 commit 98e103a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/unit/TestSslEndpointUnverified.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void SendReceive(IConnection conn) {
8888

8989

9090
[Test]
91-
public void TestHostWithPort() {
91+
public virtual void TestHostWithPort() {
9292
string sslDir = Environment.GetEnvironmentVariable("SSL_CERTS_DIR");
9393
if (null == sslDir) {
9494
return;

src/unit/TestSslEndpointVerified.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
public class TestSslEndpointVerified: TestSslEndpointUnverified {
6363

6464
[Test]
65-
public void TestHostWithPort() {
65+
public override void TestHostWithPort() {
6666
string sslDir = Environment.GetEnvironmentVariable("SSL_CERTS_DIR");
6767
if (null == sslDir) {
6868
return;

0 commit comments

Comments
 (0)