Skip to content

Commit 3b90ba5

Browse files
committed
fix text that still had from_vector
1 parent 3ec28d8 commit 3b90ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def small_vector():
1111

1212

1313
def test_insert1():
14-
vector = DynamicVector.from_vector([1, 2, 4])
14+
vector = DynamicVector.from_values([1, 2, 4])
1515
vector.insert(2, 3)
1616
assert vector.is_equal([1, 2, 3, 4])
1717

0 commit comments

Comments
 (0)