(self)
| 167 | self.assertAllEqual([30.0], results) |
| 168 | |
| 169 | def testErrorsReported(self): |
| 170 | with session.Session() as s: |
| 171 | constant_op.constant(10.0, name='W1') |
| 172 | with self.assertRaises(ValueError): |
| 173 | s.run('foo:0') |
| 174 | |
| 175 | def testErrorPayload(self): |
| 176 | with session.Session(): |