Skip to content

Commit

Permalink
!fixup formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobj committed Jan 5, 2021
1 parent c781508 commit 647d32d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,7 @@ class MyScaledAdd(cgp.node.OperatorNode):
x = [5.0, 1.5]
y_target = [2 * (x[0] + x[1])]

_test_to_x_compilations(
genome, x, y_target, test_to_sympy=False
)
_test_to_x_compilations(genome, x, y_target, test_to_sympy=False)


def test_custom_node_with_custom_atomic_operator_with_external_library():
Expand Down Expand Up @@ -675,6 +673,4 @@ class MyScaledAdd(cgp.node.OperatorNode):
x = [5.0, 1.5]
y_target = [scipy_const.golden_ratio * (x[0] + x[1])]

_test_to_x_compilations(
genome, x, y_target, test_to_sympy=False
)
_test_to_x_compilations(genome, x, y_target, test_to_sympy=False)

0 comments on commit 647d32d

Please sign in to comment.