Skip to content

Commit 0b406a2

Browse files
authored
Fix return statement in get_fixture_file method
1 parent d96db3b commit 0b406a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

unittests/test_sample_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class TestSampleData(DojoTestCase):
88
def get_fixture_file(self):
99
# TODO: Delete this after the move to Locations
1010
if not settings.V3_FEATURE_LOCATIONS:
11-
"dojo/fixtures/defect_dojo_sample_data"
11+
return "dojo/fixtures/defect_dojo_sample_data"
1212
return "dojo/fixtures/defect_dojo_sample_data_locations"
1313

1414
def test_loaddata(self):

0 commit comments

Comments
 (0)