Skip to content

Commit

Permalink
pywrapcp fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 5, 2023
1 parent 0b1dcc3 commit 14f48ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ortools/constraint_solver/python/pywrapcp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ def test_ctor(self):
solver = pywrapcp.Solver("Solve")
int_vars = [solver.IntVar(0, 4) for _ in range(4)]
ivlso = pywrapcp.IntVarLocalSearchOperator(int_vars)
self.assertNotEqual(ivlso, None)
self.assertIsNotNone(ivlso)

def test_api(self):
# print(f"{dir(pywrapcp.IntVarLocalSearchOperator)}")
Expand Down

0 comments on commit 14f48ae

Please sign in to comment.