Skip to content

Commit

Permalink
Correct logic
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Sep 26, 2023
1 parent f50f53e commit c38e6be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion link_test/link_test_send_vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self, x, y, sends_per_ts, write_route,
self.__write_route = write_route
self.__key = None
self.__mask = None
if not self.__write_route:
if self.__write_route:
self.__key = (self.__x << 24) | (self.__y << 16)
self.__mask = 0xFFFF0000

Expand Down

0 comments on commit c38e6be

Please sign in to comment.