From 43a187f4029ed81ee84c6281cc8bf27d98f5568f Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 26 Apr 2019 15:46:08 -0700 Subject: [PATCH] Removing a test. PiperOrigin-RevId: 245500739 --- tensorflow/python/framework/function_test.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tensorflow/python/framework/function_test.py b/tensorflow/python/framework/function_test.py index c077c016e00..21c6565ca97 100644 --- a/tensorflow/python/framework/function_test.py +++ b/tensorflow/python/framework/function_test.py @@ -19,7 +19,6 @@ from __future__ import division from __future__ import print_function import re -import sys import time import numpy as np @@ -825,19 +824,6 @@ class FunctionTest(test.TestCase): self.assertEqual(self.evaluate(y), 1) self.assertEqual(self.evaluate(z), 2) - def testStableName(self): - - @function.Defun() - def Foo(x, y, z): - return math_ops.tanh(math_ops.matmul(x, y) + z) - - if sys.byteorder == "big": - self.assertEqual("Foo_kEdkAG8SJvg", - Foo.instantiate([dtypes.float32] * 3).name) - else: - self.assertEqual("Foo_iaWr0XXe2BQ", - Foo.instantiate([dtypes.float32] * 3).name) - @test_util.run_deprecated_v1 def testSignatureHash(self): # Foo.Inner and Bar.Inner have identical function body but have