Skip to content

Commit

Permalink
Bug 1639007 - Make mach wpt-unittest run in Python 3, r=karlcow DONTB…
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Oct 26, 2020
1 parent adcdde0 commit 904eff9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion mach
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ py2commands="
wpt-metadata-merge
wpt-serve
wpt-test-paths
wpt-unittest
wpt-update
"

Expand Down
4 changes: 2 additions & 2 deletions testing/web-platform/unittestrunner.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ConfigParser
import argparse
import configparser
import os
import re
import subprocess
Expand Down Expand Up @@ -43,7 +43,7 @@ def __exit__(self, *args, **kwargs):

def read_deps(self):
rv = []
parser = ConfigParser.ConfigParser()
parser = configparser.ConfigParser()
path = os.path.join(self.tox_path, "tox.ini")
with open(path) as f:
parser.readfp(f)
Expand Down

0 comments on commit 904eff9

Please sign in to comment.