~elopio/autopilot/fix1244490-eventually_raises

« back to all changes in this revision

Viewing changes to autopilot/tests/functional/test_introspection_features.py

  • Committer: Tarmac
  • Author(s): Jamie Strandboge, Thomi Richards
  • Date: 2013-09-25 02:53:28 UTC
  • mfrom: (332.1.1 trunk-fix-functional-tests)
  • Revision ID: tarmac-20130925025328-vnl1wyeic5h0vtv4
Forward port apparmor rules and functional test fixes.

Approved by PS Jenkins bot, Christopher Lee.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
                self.assertThat(test_widget.visible, Eventually(Equals(True)))
124
124
 
125
125
        result1 = InnerTestCase('test_custom_emulator').run()
126
 
        self.assertThat(result1.wasSuccessful(), Equals(True))
 
126
        self.assertThat(
 
127
            result1.wasSuccessful(),
 
128
            Equals(True),
 
129
            '\n\n'.join(
 
130
                [e[1] for e in result1.decorated.errors]
 
131
            )
 
132
        )
127
133
        result2 = InnerTestCase('test_custom_emulator').run()
128
 
        self.assertThat(result2.wasSuccessful(), Equals(True))
 
134
        self.assertThat(
 
135
            result2.wasSuccessful(),
 
136
            Equals(True),
 
137
            '\n\n'.join(
 
138
                [e[1] for e in result2.decorated.errors]
 
139
            )
 
140
        )
129
141
 
130
142
 
131
143
class IntrospectionFunctionTests(AutopilotTestCase):