Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ipelupessy committed Aug 24, 2022
1 parent bfd7934 commit 7fffbbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/amuse/test/suite/core_tests/test_generate_fortran.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def test1(self):
x.start()
outputstring = x.result
print(x.result)
self.assertContainsString(outputstring, "FUNCTION echo_int(int_in, int_out)")
self.assertContainsString(outputstring, "INTEGER :: echo_int")
self.assertContainsString(outputstring, "function echo_int(int_in, int_out)")
self.assertContainsString(outputstring, "integer :: echo_int")

def test2(self):
x = create_fortran.GenerateAFortranStubStringFromASpecificationClass()
Expand Down

0 comments on commit 7fffbbe

Please sign in to comment.