~ubuntu-branches/ubuntu/raring/pandas/raring

« back to all changes in this revision

Viewing changes to pandas/io/tests/test_pytables.py

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2012-07-22 20:13:16 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20120722201316-6v4zbottvreomrz7
Tags: 0.8.1-1
* Primarily a bugfix upstream release.
* up_tag_yahoo_test_requiring_network patch removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        right = self.store['a']
92
92
        tm.assert_series_equal(left, right)
93
93
 
94
 
        self.assertRaises(AttributeError, self.store.get, 'b')
 
94
        self.assertRaises(KeyError, self.store.get, 'b')
95
95
 
96
96
    def test_put(self):
97
97
        ts = tm.makeTimeSeries()