pushfoo / eightdad

A Chip-8 interpreter in python that may include other tools in the future
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

Fix misuse of parametrize? #33

Open pushfoo opened 4 years ago

pushfoo commented 4 years ago

From the pytest documentation:

To get all combinations of multiple parametrized arguments you can stack parametrize decorators:

Currently using product calls in multiple places. It works ok, but maybe it should be fixed. Get advice on this.