Skip to content

Commit 90698a1

Browse files
committed
CSHARP-1914: Added Alex Dawes to the contributor list.
1 parent 53383f2 commit 90698a1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ Please see our [guidelines](CONTRIBUTING.md) for contributing to the driver.
8989
* Bar Arnon https://github.com/I3arnon
9090
* Bit Diffusion Limited [email protected]
9191
* Alex Brown https://github.com/alexjamesbrown
92+
* Alex Dawes https://github.com/alexdawes
9293
* Justin Dearing [email protected]
9394
* Dan DeBilt [email protected]
9495
* Teun Duynstee [email protected]

src/MongoDB.Driver/SslSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2010-2016 MongoDB Inc.
1+
/* Copyright 2010-2017 MongoDB Inc.
22
*
33
* Licensed under the Apache License, Version 2.0 (the "License");
44
* you may not use this file except in compliance with the License.

tests/MongoDB.Driver.Tests/SslSettingsTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright 2010-2014 MongoDB Inc.
1+
/* Copyright 2010-2017 MongoDB Inc.
22
*
33
* Licensed under the Apache License, Version 2.0 (the "License");
44
* you may not use this file except in compliance with the License.
@@ -69,11 +69,11 @@ public void TestClientCertificates()
6969

7070
var certificateFileName = GetTestCertificateFileName();
7171
var clientCertificates = new[] { new X509Certificate2(certificateFileName, "password"), new X509Certificate2(certificateFileName, "password") };
72-
Assert.True(clientCertificates.All(cert => cert.HasPrivateKey));
7372
settings.ClientCertificates = clientCertificates;
73+
7474
Assert.True(clientCertificates.SequenceEqual(settings.ClientCertificates));
7575
Assert.True(settings.ClientCertificates.Cast<X509Certificate2>().All(cert => cert.HasPrivateKey));
76-
76+
7777
settings.Freeze();
7878
Assert.True(clientCertificates.SequenceEqual(settings.ClientCertificates));
7979
Assert.Throws<InvalidOperationException>(() => { settings.ClientCertificates = clientCertificates; });

0 commit comments

Comments
 (0)