mirror of
https://github.com/docker/compose.git
synced 2025-07-27 07:34:10 +02:00
Merge pull request #7510 from hartwork/issue-7501-stop-using-deprecated-assertequal
tests: Stop using deprecated assertEquals (fixes #7501)
This commit is contained in:
commit
a2095a2a0c
@ -3231,12 +3231,12 @@ web:
|
|||||||
|
|
||||||
with self.assertRaises(ConfigurationError) as e:
|
with self.assertRaises(ConfigurationError) as e:
|
||||||
config.load(config1)
|
config.load(config1)
|
||||||
self.assertEquals(str(e.exception), 'Duplicate mount points: [%s]' % (
|
self.assertEqual(str(e.exception), 'Duplicate mount points: [%s]' % (
|
||||||
', '.join(['/tmp/foo:/tmp/foo:rw']*2)))
|
', '.join(['/tmp/foo:/tmp/foo:rw']*2)))
|
||||||
|
|
||||||
with self.assertRaises(ConfigurationError) as e:
|
with self.assertRaises(ConfigurationError) as e:
|
||||||
config.load(config2)
|
config.load(config2)
|
||||||
self.assertEquals(str(e.exception), 'Duplicate mount points: [%s]' % (
|
self.assertEqual(str(e.exception), 'Duplicate mount points: [%s]' % (
|
||||||
', '.join(['/x:/y:rw', '/z:/y:rw'])))
|
', '.join(['/x:/y:rw', '/z:/y:rw'])))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user