From 07340922846fb6f854c9062a93769767417475b3 Mon Sep 17 00:00:00 2001 From: ValekoZ Date: Fri, 15 Dec 2023 21:35:34 +0100 Subject: [PATCH] [target-remote] Remove empty line in gef-remote tests --- tests/commands/gef_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/gef_remote.py b/tests/commands/gef_remote.py index da5a13ec6..7c628cccc 100644 --- a/tests/commands/gef_remote.py +++ b/tests/commands/gef_remote.py @@ -38,6 +38,7 @@ def test_cmd_gef_remote_qemu_user(self): f"RemoteSession(target='{GDBSERVER_PREFERED_HOST}:{port}', local='/tmp/", res) self.assertIn(", qemu_user=True)", res) + def test_cmd_target_remote(self): port = GDBSERVER_PREFERED_PORT + 3 before = [f"target remote {GDBSERVER_PREFERED_HOST}:{port}"] @@ -48,4 +49,3 @@ def test_cmd_target_remote(self): self.assertIn( f"RemoteSession(target=':0', local='/tmp/", res) self.assertIn(", qemu_user=False)", res) -