Skip to content

Commit 51b7eda

Browse files
Update basic_full_flow.py
1 parent 47f79bf commit 51b7eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_tests/basic_full_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def test_basic_fit(self):
5252
def test_basic_fit_no_training(self):
5353
model = MyModel(hidden_dim=2, output_dim=1)
5454
x = np.random.random((128, 4))
55-
model(x)
5655
model.predict(x)
56+
model(x)
5757

5858
@pytest.mark.skipif(
5959
os.environ.get("KERAS_NNX_ENABLED") != "true",

0 commit comments

Comments
 (0)