Skip to content

Commit

Permalink
Remove duplicated test
Browse files Browse the repository at this point in the history
  • Loading branch information
gmatteo committed Oct 25, 2014
1 parent 4d767d8 commit 305c077
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def test_frozen_attrdict(self):
self.assertEqual(d["hello"], "world")
self.assertEqual(d.hello, "world")
self.assertRaises(KeyError, d.update, {"updating": 2})
self.assertRaises(KeyError, d.update, {"updating": 2})
with self.assertRaises(KeyError): d["foo"] = "bar"
with self.assertRaises(KeyError): d.foo = "bar"
with self.assertRaises(KeyError): d.hello = "new"
Expand Down

0 comments on commit 305c077

Please sign in to comment.