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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugh Bellamy <hughbellars@gmail.com>2016-04-13 22:02:54 +0300
committerHugh Bellamy <hughbellars@gmail.com>2016-04-13 22:02:54 +0300
commitf5f865ca9f6aaa40426827d46569cbb65c5a5111 (patch)
treeb8d8017408c98ab6ebb6dd86ce3b42811c9dbb85 /src/System.Collections.NonGeneric/tests/Helpers.cs
parentd2ede3b42ecac0ae58768343c507fed4fbcf530e (diff)
Rename System.Collections.NonGeneric tests and add param names
- Also cleans up up some tests
Diffstat (limited to 'src/System.Collections.NonGeneric/tests/Helpers.cs')
-rw-r--r--src/System.Collections.NonGeneric/tests/Helpers.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/System.Collections.NonGeneric/tests/Helpers.cs b/src/System.Collections.NonGeneric/tests/Helpers.cs
index 3e82fa32e2..354fbdc151 100644
--- a/src/System.Collections.NonGeneric/tests/Helpers.cs
+++ b/src/System.Collections.NonGeneric/tests/Helpers.cs
@@ -219,13 +219,5 @@ namespace System.Collections.Tests
CultureInfo.DefaultThreadCurrentCulture = currentCulture;
}
}
-
- public static int NormalizeCompare(int i)
- {
- return
- i == 0 ? 0 :
- i > 0 ? 1 :
- -1;
- }
}
}