You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug where a test will fail if there are print statements in the server code will reach a certain character limit. If a for loop is used to print characters, like in the example below, then the following test will fail: 16 clients test, 17 clients test, list test and in use test. It is possible that the other test can fail as well, but this has not happened when I attempted this. I believe this bug is a error from code grade. This can be tested by running a docker and seeing if it will still fail in the docker. My docker does not work for some unknown reason, so i have not been able to test this.
x = 1
for x in range(10000):
print(x)
vsi209
The text was updated successfully, but these errors were encountered:
There is a bug where a test will fail if there are print statements in the server code will reach a certain character limit. If a for loop is used to print characters, like in the example below, then the following test will fail: 16 clients test, 17 clients test, list test and in use test. It is possible that the other test can fail as well, but this has not happened when I attempted this. I believe this bug is a error from code grade. This can be tested by running a docker and seeing if it will still fail in the docker. My docker does not work for some unknown reason, so i have not been able to test this.
x = 1
for x in range(10000):
print(x)
vsi209
The text was updated successfully, but these errors were encountered: