Skip to content
Snippets Groups Projects
Commit 0c2a961f authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

py3: use byte for reset in discovery test

parent 4e57fe5c
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,6 @@
raise NotImplementedError("no roles data for this partials' key")
# first revision with the command available
firstperfdiscorev = 'db6cace18765ded16abe0a0369dec9a7771fcdfd'
revset = '%s::' % firstperfdiscorev
firstperfdiscorev = b'db6cace18765ded16abe0a0369dec9a7771fcdfd'
revset = b'%s::' % firstperfdiscorev
# revision with a backward compatible contrib/perf.py
......@@ -31,3 +31,3 @@
# revision with a backward compatible contrib/perf.py
goodperfdiscorev = '39cab871e8801489fcb6022527d47607ada92fb6'
goodperfdiscorev = b'39cab871e8801489fcb6022527d47607ada92fb6'
# perfdiscovery fails prior to 2.7
......@@ -33,5 +33,5 @@
# perfdiscovery fails prior to 2.7
not_before_revset = '::3d19b81366410f8bb72dbde8969be124fe612def'
not_before_revset = b'::3d19b81366410f8bb72dbde8969be124fe612def'
if self._matchrevset(not_before_revset, self.get_asv_rev()):
return float('nan')
kwargs = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment