File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/hamcrest_unit_test/collection Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def testReturnsTrueForEmptyStandardCollections(self):
1919 matcher = empty ()
2020 self .assert_matches ("empty tuple" , matcher , ())
2121 self .assert_matches ("empty list" , matcher , [])
22- self .assert_matches ("emtpy dictionary" , matcher , {})
22+ self .assert_matches ("empty dictionary" , matcher , {})
2323
2424 def testReturnsTrueForEmptyCollectionLike (self ):
2525 matcher = empty ()
@@ -29,7 +29,7 @@ def testReturnsFalseForNonEmptyStandardCollections(self):
2929 matcher = empty ()
3030 self .assert_does_not_match ("non-empty tuple" , matcher , (1 ,))
3131 self .assert_does_not_match ("non-empty list" , matcher , [1 ])
32- self .assert_does_not_match ("emtpy dictionary" , matcher , {1 : 2 })
32+ self .assert_does_not_match ("empty dictionary" , matcher , {1 : 2 })
3333
3434 def testReturnsFalseForNonEmptyCollectionLike (self ):
3535 matcher = empty ()
You can’t perform that action at this time.
0 commit comments