From d4edf2188d044163cbd95a02970be535fe972b21 Mon Sep 17 00:00:00 2001 From: Tristan Labelle Date: Mon, 15 Apr 2024 10:04:56 -0400 Subject: [PATCH] Fix function reference --- tests/test_app/CollectionTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_app/CollectionTests.swift b/tests/test_app/CollectionTests.swift index 0e89d1d..8847d49 100644 --- a/tests/test_app/CollectionTests.swift +++ b/tests/test_app/CollectionTests.swift @@ -43,7 +43,7 @@ class CollectionTests : XCTestCase { } public func testArrayVectorIsIterable() throws { - XCTAssertNotNil(try CollectionTester.vectorToIterable(["a", "b", "c"].toVector())) + XCTAssertNotNil(try CollectionTester.vectorAsIterable(["a", "b", "c"].toVector())) } public func testVectorObject_toCallback() throws {