Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FINAM
finam
Commits
d1d64adc
Commit
d1d64adc
authored
5 months ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
tests: gen_cells now has correct vtk cell-node order in 3D
parent
7e5c0cd7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!286
Add mask to Info object
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/data/test_grid_tools.py
+1
-1
1 addition, 1 deletion
tests/data/test_grid_tools.py
with
1 addition
and
1 deletion
tests/data/test_grid_tools.py
+
1
−
1
View file @
d1d64adc
...
...
@@ -89,7 +89,7 @@ class TestGridTools(unittest.TestCase):
assert_array_equal
(
gen_cells
((
1
,),
order
=
"
F
"
),
[[
0
]])
assert_array_equal
(
gen_cells
((
2
,),
order
=
"
F
"
),
[[
0
,
1
]])
assert_array_equal
(
gen_cells
((
2
,
2
,
2
),
order
=
"
F
"
),
[[
2
,
3
,
1
,
0
,
6
,
7
,
5
,
4
]])
assert_array_equal
(
gen_cells
((
2
,
2
,
2
),
order
=
"
F
"
),
[[
6
,
7
,
5
,
4
,
2
,
3
,
1
,
0
]])
# 0---1---2
# | | |
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment