Skip to content

Commit

Permalink
Fix typo in the test case name.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 388305496
  • Loading branch information
qlzh727 authored and tensorflower-gardener committed Aug 2, 2021
1 parent 3985029 commit ff38804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keras/engine/functional_utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

class FunctionalModelSlideTest(keras_parameterized.TestCase):

def testfind_nodes_by_inputs_and_outputs(self):
def test_find_nodes_by_inputs_and_outputs(self):
inputs = input_layer_lib.Input((10,))
unconnected_inputs = input_layer_lib.Input((10,))
x = layers.Dense(8)(inputs)
Expand Down Expand Up @@ -57,7 +57,7 @@ def testfind_nodes_by_inputs_and_outputs(self):
functional_utils.find_nodes_by_inputs_and_outputs(
[inputs, unconnected_inputs], output)

def testfind_nodes_by_inputs_and_outputs_with_complicated_network(self):
def test_find_nodes_by_inputs_and_outputs_with_complicated_network(self):
input1 = input_layer_lib.Input((10,))
input2 = input_layer_lib.Input((10,))
input3 = input_layer_lib.Input((10,))
Expand Down

0 comments on commit ff38804

Please sign in to comment.