some of the debian_amd64 load_as_expected tests fixed, tab2spaces

This commit is contained in:
diginc
2017-12-07 23:30:54 -06:00
parent aab0b3f3cb
commit 988e17be7a
3 changed files with 23 additions and 17 deletions

View File

@@ -65,7 +65,7 @@ def test_javascript_requests_load_as_expected(RunningPiHole, addr, url):
http_rc = RunningPiHole.run(command)
assert http_rc.rc == 0
assert int(http_rc.stdout) == 200
assert RunningPiHole.run('md5sum /tmp/curled_file /var/www/html/pihole/index.js').rc == 0
assert 'var x = "Pi-hole: A black hole for Internet advertisements."' in RunningPiHole.run('cat /tmp/curled_file').stdout
# IPv6 checks aren't passing CORS, removed :(
@pytest.mark.parametrize('addr', [ 'localhost' ] )