Skip to content

Commit

Permalink
Delete non-deterministic testEmpty() test (tensorflow#10512)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhseu authored and Amit Patankar committed Jun 9, 2017
1 parent bf22796 commit 9a1aa09
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tensorflow/python/kernel_tests/matrix_solve_op_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,6 @@ def testNotInvertible(self):
[[1., 0., -1.], [-1., 1., 0.], [0., -1., 1.]])
linalg_ops.matrix_solve(matrix, matrix).eval()

def testEmpty(self):
with self.test_session():
self._verifySolve(np.empty([0, 0]), np.empty([0, 0]))
self._verifySolve(np.empty([2, 2]), np.empty([2, 0]))


if __name__ == "__main__":
test.main()

0 comments on commit 9a1aa09

Please sign in to comment.