Skip to content

Commit

Permalink
Merge pull request #75 from DrDomenicoMarson/test-utils-fix
Browse files Browse the repository at this point in the history
renamed redundant test_getattr_key to test_getattr_dot in test_utils.py
  • Loading branch information
xiki-tempula authored Oct 1, 2022
2 parents d4a61d2 + 87aa526 commit c574471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alchemtest/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TestBunch:
def test_getattr_key(self, bunch):
assert bunch["DESCR"] == "Fibonacci"

def test_getattr_key(self, bunch):
def test_getattr_dot(self, bunch):
assert bunch.DESCR == "Fibonacci"

def test_setattr_key(self, bunch):
Expand Down

0 comments on commit c574471

Please sign in to comment.