Fix import in tests.py

tests.py was importing update_std_dev() from views.py (where the function was prior to
the refactor), now fixed.
This commit is contained in:
Chris Shyi
2018-06-02 23:14:47 -04:00
parent e87d121804
commit a508337363

View File

@@ -1,5 +1,5 @@
from django.test import TestCase from django.test import TestCase
from .views import update_std_dev from .utils import update_std_dev
import math import math
# Create your tests here. # Create your tests here.