tests: Don't parse httpbin date.
We don't need the parsed date, and the parsing is locale dependent, which can cause trouble.
This commit is contained in:
parent
726525b26a
commit
516a81c3cc
@ -26,7 +26,6 @@ import re
|
|||||||
import sys
|
import sys
|
||||||
import socket
|
import socket
|
||||||
import os.path
|
import os.path
|
||||||
import datetime
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from PyQt5.QtCore import pyqtSignal
|
from PyQt5.QtCore import pyqtSignal
|
||||||
@ -67,8 +66,7 @@ class Request(testprocess.Line):
|
|||||||
|
|
||||||
assert match.group('host') == '127.0.0.1'
|
assert match.group('host') == '127.0.0.1'
|
||||||
assert match.group('user') == '-'
|
assert match.group('user') == '-'
|
||||||
self.timestamp = datetime.datetime.strptime(match.group('date'),
|
self.timestamp = match.group('date')
|
||||||
'%d/%b/%Y %H:%M:%S')
|
|
||||||
self.verb = match.group('verb')
|
self.verb = match.group('verb')
|
||||||
|
|
||||||
# FIXME do we need to allow other options?
|
# FIXME do we need to allow other options?
|
||||||
|
Loading…
Reference in New Issue
Block a user