Skip to content

Commit

Permalink
tests: Fixed diagnostic print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
EdCaunt committed Oct 25, 2023
1 parent 8c0d9e4 commit 0eb8bb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_subdomains.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ def define(self, dimensions):
for dim, sta, sto in zip(grid.subdomains['d0'].dimensions, start, stop):
print(dim, sta, sto)
print(type(dim), type(sta), type(sto))
print(dim._thickness_map)
if dim.is_Sub:
print(dim._thickness_map)
print()

slices = tuple(slice(sta.subs(dim._thickness_map),
Expand Down

0 comments on commit 0eb8bb1

Please sign in to comment.