diff --git a/b_asic/_preferences.py b/b_asic/_preferences.py index 004e498ccf997bec68298ef88ac73e7ee19d962a..83ac3f43cfb680e2bbcf65a1a42c295941f1809e 100644 --- a/b_asic/_preferences.py +++ b/b_asic/_preferences.py @@ -16,6 +16,6 @@ PE_COLOR = (0, 185, 231) # LiuBlue PE_CLUSTER_COLOR = (210, 238, 249) # LiuBlue5 MEMORY_COLOR = (0, 207, 181) # LiuGreen MEMORY_CLUSTER_COLOR = (213, 241, 235) # LiuGreen5 -IO_COLOR = (23, 199, 210) # LiuTurqoise -IO_CLUSTER_COLOR = (215, 239, 242) # LiuTurqoise5 +IO_COLOR = (23, 199, 210) # LiuTurquoise +IO_CLUSTER_COLOR = (215, 239, 242) # LiuTurquoise5 MUX_COLOR = (255, 100, 66) # LiuOrange diff --git a/test/unit/test_schedule.py b/test/unit/test_schedule.py index bbd98c3622e99526a59663dd08394997de2d57d1..4d45755d3e7498b77b3ba89d77e13b4c09a55368 100644 --- a/test/unit/test_schedule.py +++ b/test/unit/test_schedule.py @@ -804,8 +804,7 @@ class TestYLocations: schedule = Schedule(sfg_simple_filter, ASAPScheduler()) # Assign locations schedule.show() - print(schedule._y_locations) - assert schedule._y_locations == {'in0': 0, 'cmul0': 1, 'add0': 2, 'out0': 3} + assert schedule._y_locations == {'in0': 0, 'cmul0': 1, 'add0': 3, 'out0': 2} schedule.move_y_location('add0', 1, insert=True) assert schedule._y_locations == {'in0': 0, 'cmul0': 2, 'add0': 1, 'out0': 3} schedule.move_y_location('out0', 1)