We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6658676 commit 154f744Copy full SHA for 154f744
Tests/PythonKitTests/PythonRuntimeTests.swift
@@ -35,9 +35,9 @@ class PythonRuntimeTests: XCTestCase {
35
XCTAssertEqual(1, dict["a"])
36
XCTAssertEqual(0.5, dict[1])
37
38
- XCTAssertEqual(2, polymorphicList.count)
39
- XCTAssertEqual(2, polymorphicList.checking.count!)
40
- XCTAssertEqual(2, polymorphicList.throwing.count!)
+ XCTAssertEqual(2, dict.count)
+ XCTAssertEqual(2, dict.checking.count!)
+ XCTAssertEqual(2, dict.throwing.count!)
41
42
dict["b"] = "c"
43
XCTAssertEqual("c", dict["b"])
0 commit comments