diff --git a/kwant/tests/test_wraparound.py b/kwant/tests/test_wraparound.py index c1233a97cb71aef6e31b240bac616081b6089f0d..315c8c54df2199942d4530ab873dc2e16297372a 100644 --- a/kwant/tests/test_wraparound.py +++ b/kwant/tests/test_wraparound.py @@ -271,8 +271,8 @@ def test_fd_mismatch(): # combine the previous two syst3 = kwant.Builder(T) - syst3 += syst1 - syst3 += syst2 + syst3.update(syst1) + syst3.update(syst2) for syst in (syst1, syst2, syst3): wraparound(syst)