Skip to content

Commit

Permalink
hore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Jun 10, 2024
1 parent 1045b91 commit 7a52745
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/deployment/test_client_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_client_server_sklearn_inference(
model = instantiate_model_generic(model_class, n_bits=n_bits)

# Fit the model
model.fit(x_train, y_train)
model.fit(x_train, y_train, fhe="disable")

key_dir = default_configuration.insecure_key_cache_location

Expand Down Expand Up @@ -360,8 +360,8 @@ def test_save_mode_handling(n_bits, fit_encrypted, mode, error_message):
n_bits=n_bits,
)

# Fit the model
model.fit(x_train, y_train)
# Fit the model in the clear
model.fit(x_train, y_train, fhe="disable")

# Compile
model.compile(X=x_train)
Expand Down

0 comments on commit 7a52745

Please sign in to comment.