Skip to content

Commit

Permalink
fix folder in test
Browse files Browse the repository at this point in the history
  • Loading branch information
joergbuchwald committed Oct 17, 2023
1 parent 86bdcda commit d540765
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/includetest.prj
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
</property>
</properties>
</phase>
<include file="tests/solid_inc.xml"/>
<include file="solid_inc.xml"/>
</phases>
<properties>
<property>
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ogs6py.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def test_replace_block_by_include(self):
while chunk := f.read(8192):
file_hash.update(chunk)
self.assertEqual(file_hash.hexdigest(), 'ab3a785a29f2347d31769057348dc81a')
with open("solid.xml", "rb") as f:
with open("tests/solid.xml", "rb") as f:
file_hash = hashlib.md5()
while chunk := f.read(8192):
file_hash.update(chunk)
Expand All @@ -623,7 +623,7 @@ def test_replace_property_in_include(self):
file_hash = hashlib.md5()
while chunk := f.read(8192):
file_hash.update(chunk)
self.assertEqual(file_hash.hexdigest(), '4196c13e54dad2026e4f8283d7faf141')
self.assertEqual(file_hash.hexdigest(), 'a5ca3722007055f9c1672d1ffc8994f8')
with open("tests/solid_inc.xml", "rb") as f:
file_hash = hashlib.md5()
while chunk := f.read(8192):
Expand Down

0 comments on commit d540765

Please sign in to comment.