Skip to content

Commit

Permalink
fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kinnala committed Jul 10, 2024
1 parent c3e230d commit 685cebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ def runTest(self):
import docs.examples.ex40 as ex

self.assertAlmostEqual(ex.u1.max(), 0.0748, delta=1e-3)
self.assertAlmostEqual(ex.u2.max(), 0.0748, delta=1e-3)
self.assertAlmostEqual(ex.ut.max(), 0.0748, delta=1e-3)
self.assertAlmostEqual(ex.u1.min(), 0.0, delta=3e-3)
self.assertAlmostEqual(ex.u2.min(), 0.0, delta=3e-3)
self.assertAlmostEqual(ex.ut.min(), 0.0, delta=3e-3)


class TestEx41(TestCase):
Expand Down

0 comments on commit 685cebf

Please sign in to comment.