test-run-dev: Remove close_and_get_content.

After the new implementation of start_server, this function is not
needed anymore.
This commit is contained in:
Umair Khan 2018-01-01 09:46:09 +05:00 committed by showell
parent 45b004818b
commit 4c5d361990
1 changed files with 0 additions and 8 deletions

View File

@ -62,14 +62,6 @@ def test_nagios(nagios_logfile):
return False
def close_and_get_content(file_handle):
# type: (IO[str]) -> str
file_handle.seek(0)
content = file_handle.read()
file_handle.close()
return content
if __name__ == '__main__':
print("Testing development server start!")