Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
githubering182 committed Jul 16, 2024
1 parent b0818ed commit 747485e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions backend-app/file/file_tests/export_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from file.export import XLS, JSON, CSV
from file.export import JSON, CSV
from file.services import StatsServices
from django.test import TestCase
from attribute.attribute_tests.mock_attribute import MockCase
Expand All @@ -13,11 +13,8 @@ def setUpClass(cls):
cls.attr_stat, _ = StatsServices.from_attribute(cls.case.project.id)
cls.user_stat, _ = StatsServices.from_user(cls.case.project.id)

def test_xls(self):
...
#attr_res = XLS(self.attr_stat, "attribute").into_response()
#user_res = XLS(self.user_stat, "user").into_response()
# TODO:
# TODO:
def test_xls(self): ...

def test_csv(self):
attr_res = CSV(self.attr_stat, "attribute").into_response()
Expand Down

0 comments on commit 747485e

Please sign in to comment.