Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushi@ximian.com>2011-04-06 15:01:27 +0400
committerAtsushi Eno <atsushi@ximian.com>2011-04-06 15:01:27 +0400
commitc838b12b2e0bbebc6cd9e686bdbe0a7cde95fde6 (patch)
tree180337328f5af1c7663fe38189f77dc737af0164 /mcs/class/Npgsql
parentf8928669f247e8a9eec57b6c182fc128d40a2336 (diff)
Remove obsolete nunit syntax from tests except for Assertion usage.
Diffstat (limited to 'mcs/class/Npgsql')
-rw-r--r--mcs/class/Npgsql/Test/CommandTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Npgsql/Test/CommandTests.cs b/mcs/class/Npgsql/Test/CommandTests.cs
index 8da7d95a1cc..e37399ff72a 100644
--- a/mcs/class/Npgsql/Test/CommandTests.cs
+++ b/mcs/class/Npgsql/Test/CommandTests.cs
@@ -108,7 +108,7 @@ namespace NpgsqlTests
NpgsqlDataReader reader = command.ExecuteReader();
- Assertion.AssertNotNull(reader);
+ Assert.IsNotNull(reader);
//reader.FieldCount
}