Skip to content

Commit

Permalink
Add newline to end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaenriquez committed Nov 13, 2018
1 parent 0ea685f commit 64254fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pygridgen/tests/test_focus.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,5 @@ def test_focus_to_from_spec():
for dict1, dict2 in zip(f1.to_spec(), f2.to_spec()):
numpy.testing.assert_equal(dict1.keys(), dict2.keys())
for value1, value2 in zip(dict1.values(), dict2.values()):
assert value1 == value2
assert value1 == value2

3 changes: 2 additions & 1 deletion pygridgen/tests/test_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,4 +604,5 @@ def test_gridgen_to_from_spec():

# testing - using almost equal due to rounding issues with floats
numpy.testing.assert_array_almost_equal(grid1.x, grid2.x)
numpy.testing.assert_array_almost_equal(grid1.y, grid2.y)
numpy.testing.assert_array_almost_equal(grid1.y, grid2.y)

0 comments on commit 64254fc

Please sign in to comment.