Skip to content

Commit

Permalink
add newline to follow formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Jun 20, 2024
1 parent 18081b4 commit 9d52b89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/python/tests/matrix/test_eigen.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ def test_svd_basic(self):


if __name__ == '__main__':
unittest.main()
unittest.main()
2 changes: 1 addition & 1 deletion src/main/python/tests/matrix/test_fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,4 +330,4 @@ def test_ifft_non_power_of_two_matrix(self):
_ = self.sds.ifft(sds_real_input, sds_imag_input).compute()

if __name__ == '__main__':
unittest.main()
unittest.main()
2 changes: 1 addition & 1 deletion src/main/python/tests/matrix/test_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ def test_slice_row_col_both(self):
self.sds.from_numpy(m)[[1, 2], [0, 3]]

if __name__ == "__main__":
unittest.main(exit=False)
unittest.main(exit=False)
2 changes: 1 addition & 1 deletion src/main/python/tests/matrix/test_svd.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ def test_svd_basic(self):


if __name__ == '__main__':
unittest.main()
unittest.main()

0 comments on commit 9d52b89

Please sign in to comment.