Skip to content

Commit 154f744

Browse files
committed
Fix typo
1 parent 6658676 commit 154f744

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/PythonKitTests/PythonRuntimeTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class PythonRuntimeTests: XCTestCase {
3535
XCTAssertEqual(1, dict["a"])
3636
XCTAssertEqual(0.5, dict[1])
3737

38-
XCTAssertEqual(2, polymorphicList.count)
39-
XCTAssertEqual(2, polymorphicList.checking.count!)
40-
XCTAssertEqual(2, polymorphicList.throwing.count!)
38+
XCTAssertEqual(2, dict.count)
39+
XCTAssertEqual(2, dict.checking.count!)
40+
XCTAssertEqual(2, dict.throwing.count!)
4141

4242
dict["b"] = "c"
4343
XCTAssertEqual("c", dict["b"])

0 commit comments

Comments
 (0)