Skip to content

Commit

Permalink
Fix path in test record
Browse files Browse the repository at this point in the history
Fixes path in test_records that breaks during full test run
  • Loading branch information
ItIsJordan committed Nov 22, 2023
1 parent 8a02c32 commit 9a555c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/test_records.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,12 +393,12 @@ def test_version_related_table(live_server, logged_in_browser):
{
"version": 1,
"submission" : None,
"directory": "test_data/test_version/test_1_version_1"
"directory": "tests/test_data/test_version/test_1_version_1"
},
{
"version" : 2,
"submission" : None,
"directory": "test_data/test_version/test_1_version_2",
"directory": "tests/test_data/test_version/test_1_version_2",
"expected_data": [{
"url_text": "TestTable2-V1",
"url_title": "TestTable2-description-V1"
Expand All @@ -419,12 +419,12 @@ def test_version_related_table(live_server, logged_in_browser):
{
"version": 1,
"submission": None,
"directory": "test_data/test_version/test_2_version_1"
"directory": "tests/test_data/test_version/test_2_version_1"
},
{
"version": 2,
"submission": None,
"directory": "test_data/test_version/test_2_version_2",
"directory": "tests/test_data/test_version/test_2_version_2",
"expected_data": [{
"url_text": "TestTable1-V1",
"url_title": "TestTable1-description-V1"
Expand Down

0 comments on commit 9a555c4

Please sign in to comment.