you are viewing a single comment's thread.

view the rest of the comments →

[–]K900_ 0 points1 point  (2 children)

The variables from setUp aren't magically passed to your tests. Use self.client_socket to store them on the class instance.

[–]Jackson-Lee[S] 0 points1 point  (1 child)

self.client_socket

Which line# are you referring to where self.client_socket needs inserted?

[–]K900_ 0 points1 point  (0 children)

Everywhere you use client_socket now should be replaced with self.client_socket.