Skip to content

Commit

Permalink
improving pure cythonize code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
nucccc committed Dec 12, 2023
1 parent 616c23f commit 0de1e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cythonize_pure.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ def test_typ_store_to_varnames_imposed_vars():
typ_store = typ_store,
default_cy_int=CyInt.INT,
default_cy_float=CyFloat.FLOAT,
imposed_vars={'a':CyInt.LONG}
imposed_vars={'a':CyInt.LONG, 'b':CyFloat.DOUBLE}
))

expected_tuples = {
('a', 'long'),
('b', 'float'),
('b', 'double'),
('c', 'char'),
}

Expand Down

0 comments on commit 0de1e58

Please sign in to comment.