Skip to content

Commit

Permalink
Fixing paths again
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottMacLachlan committed Oct 1, 2023
1 parent 567af93 commit 23d2ca6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/test_array_stats_pytest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
import code.array_stats
import array_stats

@pytest.mark.parametrize("data_list,expected",
[([-2, -1, 0, 1, 2],0),
Expand Down
2 changes: 1 addition & 1 deletion code/test_mymath.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest
import math as m
from code.mymath import sinc2d
from mymath import sinc2d

@pytest.mark.parametrize("x,y,expected",
[(0,0,1),
Expand Down
2 changes: 1 addition & 1 deletion code/test_mymath2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from code.mymath import *
from mymath import *

@pytest.mark.parametrize("x,x_plus_one",[(0,1),(1,2),(1.5,2.5),(2.25,3.25)])
def test_addone(x,x_plus_one):
Expand Down

0 comments on commit 23d2ca6

Please sign in to comment.