Skip to content

Commit

Permalink
-just reformat test_pcan
Browse files Browse the repository at this point in the history
  • Loading branch information
BKaDamien authored and zariiii9003 committed Dec 21, 2022
1 parent fe3de2c commit 890eee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_pcan.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def test_recv_fd(self):
self.assertEqual(recv_msg.timestamp, 0)

@pytest.mark.timeout(3.0)
@patch("select.select", return_value=([],[],[]))
@patch("select.select", return_value=([], [], []))
def test_recv_no_message(self, mock_select):
self.mock_pcan.Read = Mock(return_value=(PCAN_ERROR_QRCVEMPTY, None, None))
self.bus = can.Bus(bustype="pcan")
Expand Down

0 comments on commit 890eee3

Please sign in to comment.