Skip to content

Commit

Permalink
parametrize test
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Sep 7, 2024
1 parent 04284ef commit f4763fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_dummy.py
Original file line number Diff line number Diff line change
@@ -4,9 +4,9 @@

import pytest

def test_roszman1():

lib = CDLL('./Roszman1_x64.so')
@pytest.mark.parametrize("path", ['./Roszman1_x64.so', './msl-nlf/tests/user_defined/Roszman1_x64.so'])
def test_roszman1(path):
lib = CDLL(path)

buffer = create_string_buffer(256)
lib.GetFunctionName(buffer)

0 comments on commit f4763fb

Please # to comment.