StdlibUnittest: Rename enum cases and static vars to match API guidelines.

This commit is contained in:
Jordan Rose
2016-02-24 18:23:59 -08:00
parent f922084180
commit e4e9c71d8f
52 changed files with 599 additions and 599 deletions

View File

@@ -27,9 +27,9 @@ NSEnumeratorAPI.test("keyEnumerator") {
expectEqualsUnordered(
[1, 2], NSDictionary(dictionary: result).keyEnumerator()) {
switch ($0 as! Int, $1 as! Int) {
case let (x, y) where x == y: return .EQ
case let (x, y) where x < y: return .LT
case _: return .GT
case let (x, y) where x == y: return .eq
case let (x, y) where x < y: return .lt
case _: return .gt
}
}
}