qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>, qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org, mreitz@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] iotests: Replace assertEquals() with assertEqual()
Date: Tue, 20 Nov 2018 21:17:58 +0100	[thread overview]
Message-ID: <4e2d1505-c5f6-fd8f-38fe-a4cd1457f352@redhat.com> (raw)
In-Reply-To: <20181120172252.17800-3-kwolf@redhat.com>

On 20/11/18 18:22, Kevin Wolf wrote:
> TestCase.assertEquals() is deprecated since Python 2.7. Recent Python
> versions print a warning when the function is called, which makes test
> cases fail.
> 
> Replace it with the preferred spelling assertEqual().
> 
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>   tests/qemu-iotests/041        | 6 +++---
>   tests/qemu-iotests/118        | 4 ++--
>   tests/qemu-iotests/iotests.py | 2 +-
>   3 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/tests/qemu-iotests/041 b/tests/qemu-iotests/041
> index 3615011d98..26bf1701eb 100755
> --- a/tests/qemu-iotests/041
> +++ b/tests/qemu-iotests/041
> @@ -469,7 +469,7 @@ new_state = "1"
>               self.assert_qmp(event, 'data/id', 'drive0')
>               event = self.vm.get_qmp_event(wait=True)
>   
> -        self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
> +        self.assertEqual(event['event'], 'BLOCK_JOB_ERROR')
>           self.assert_qmp(event, 'data/device', 'drive0')
>           self.assert_qmp(event, 'data/operation', 'read')
>           result = self.vm.qmp('query-block-jobs')
> @@ -494,7 +494,7 @@ new_state = "1"
>               self.assert_qmp(event, 'data/id', 'drive0')
>               event = self.vm.get_qmp_event(wait=True)
>   
> -        self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
> +        self.assertEqual(event['event'], 'BLOCK_JOB_ERROR')
>           self.assert_qmp(event, 'data/device', 'drive0')
>           self.assert_qmp(event, 'data/operation', 'read')
>           result = self.vm.qmp('query-block-jobs')
> @@ -625,7 +625,7 @@ new_state = "1"
>           self.assert_qmp(result, 'return', {})
>   
>           event = self.vm.event_wait(name='BLOCK_JOB_ERROR')
> -        self.assertEquals(event['event'], 'BLOCK_JOB_ERROR')
> +        self.assertEqual(event['event'], 'BLOCK_JOB_ERROR')
>           self.assert_qmp(event, 'data/device', 'drive0')
>           self.assert_qmp(event, 'data/operation', 'write')
>           result = self.vm.qmp('query-block-jobs')
> diff --git a/tests/qemu-iotests/118 b/tests/qemu-iotests/118
> index c4f4c213ca..603e10e8a2 100755
> --- a/tests/qemu-iotests/118
> +++ b/tests/qemu-iotests/118
> @@ -261,7 +261,7 @@ class GeneralChangeTestsBaseClass(ChangeBaseClass):
>           result = self.vm.qmp('blockdev-close-tray', id=self.device_name)
>           # Should be a no-op
>           self.assert_qmp(result, 'return', {})
> -        self.assertEquals(self.vm.get_qmp_events(wait=False), [])
> +        self.assertEqual(self.vm.get_qmp_events(wait=False), [])
>   
>       def test_remove_on_closed(self):
>           if not self.has_real_tray:
> @@ -448,7 +448,7 @@ class TestChangeReadOnly(ChangeBaseClass):
>                                                          read_only_mode='retain')
>           self.assert_qmp(result, 'error/class', 'GenericError')
>   
> -        self.assertEquals(self.vm.get_qmp_events(wait=False), [])
> +        self.assertEqual(self.vm.get_qmp_events(wait=False), [])
>   
>           result = self.vm.qmp('query-block')
>           self.assert_qmp(result, 'return[0]/inserted/ro', False)
> diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
> index 27bb2b600c..d537538ba0 100644
> --- a/tests/qemu-iotests/iotests.py
> +++ b/tests/qemu-iotests/iotests.py
> @@ -581,7 +581,7 @@ class QMPTestCase(unittest.TestCase):
>       def wait_ready_and_cancel(self, drive='drive0'):
>           self.wait_ready(drive=drive)
>           event = self.cancel_and_wait(drive=drive)
> -        self.assertEquals(event['event'], 'BLOCK_JOB_COMPLETED')
> +        self.assertEqual(event['event'], 'BLOCK_JOB_COMPLETED')
>           self.assert_qmp(event, 'data/type', 'mirror')
>           self.assert_qmp(event, 'data/offset', event['data']['len'])
>   
> 

  reply	other threads:[~2018-11-20 20:18 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-20 17:22 [Qemu-devel] [PATCH for-3.1 0/2] iotests: More Python 3 fixes Kevin Wolf
2018-11-20 17:22 ` [Qemu-devel] [PATCH 1/2] iotests: Replace time.clock() with Timeout Kevin Wolf
2018-11-20 20:16   ` Philippe Mathieu-Daudé
2018-11-20 21:36   ` [Qemu-devel] [Qemu-block] " John Snow
2018-11-20 17:22 ` [Qemu-devel] [PATCH 2/2] iotests: Replace assertEquals() with assertEqual() Kevin Wolf
2018-11-20 20:17   ` Philippe Mathieu-Daudé [this message]
2018-11-20 21:37   ` [Qemu-devel] [Qemu-block] " John Snow
2018-11-20 21:54 ` [Qemu-devel] [PATCH for-3.1 0/2] iotests: More Python 3 fixes Kevin Wolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4e2d1505-c5f6-fd8f-38fe-a4cd1457f352@redhat.com \
    --to=philmd@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).