Update tests and CI to python3 (#5095)
Update debugger and test262 tests to python3 Disable CI jobs that need ubuntu-18.04 (EOL) until they are updated JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi matet@inf.u-szeged.hu
This commit is contained in:
@@ -70,7 +70,7 @@ class RawPacket(object):
|
||||
|
||||
while True:
|
||||
if len(self.data_buffer) >= 1:
|
||||
size = ord(self.data_buffer[0])
|
||||
size = self.data_buffer[0]
|
||||
if size == 0:
|
||||
raise Exception("Unexpected data frame")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user