Fix file ends for CI

This commit is contained in:
Lucian Copeland 2021-02-18 16:26:14 -05:00
parent 59429cdcbe
commit e77981f86e
3 changed files with 2 additions and 3 deletions

View File

@ -24,4 +24,4 @@ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
data = conn.recv(128)
print("got: " + str(data))
conn.sendall(data)
print("sent: " + str(data))
print("sent: " + str(data))

View File

@ -43,4 +43,4 @@ Accepting connections
Connected by ('192.168.10.128', 64509)
got: b'Hello, world'
sent: b'Hello, world'
```
```

View File

@ -15,4 +15,3 @@ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
print("Receiving")
data = s.recv(1024)
print('Received', repr(data))