Skip to content

Commit

Permalink
avoid memory-dict in test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Jan 18, 2025
1 parent 5af04d0 commit 327fa0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_empty_output/non_verbose.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ def ackley_function(para):


hyper = Hyperactive(verbosity=False)
hyper.add_search(ackley_function, search_space, n_iter=30)
hyper.add_search(ackley_function, search_space, n_iter=30, memory=True)
hyper.run()
2 changes: 1 addition & 1 deletion tests/test_empty_output/verbose.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def ackley_function(para):


hyper = Hyperactive()
hyper.add_search(ackley_function, search_space, n_iter=30)
hyper.add_search(ackley_function, search_space, n_iter=30, memory=True)
hyper.run()

sys.stdout.flush()

0 comments on commit 327fa0d

Please sign in to comment.