Adapt functional tests to python3

A test looking for a regex in an argparse error message is failing when ran
on python3. Since this is now the default python runtime for devstack-based
jobs, this updates the message.

Change-Id: Id3372998715f13f7641d11a4a1d9d16629acfd18
Story: 2006896
Task: 37530
This commit is contained in:
Luka Peschke 2019-11-18 10:28:23 +01:00
parent be0a9861d0
commit 584046761a
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class CkDataframesTest(base.BaseFunctionalTest):
def test_dataframes_add_with_no_args(self):
self.assertRaisesRegexp(
RuntimeError,
'error: too few arguments',
'error: the following arguments are required: datafile',
self.runner,
'dataframes add',
fmt='',