Your message dated Wed, 13 Dec 2023 13:49:40 +0000
with message-id <e1rdpck-00ckrd...@fasolo.debian.org>
and subject line Bug#1056509: fixed in python-tubes 0.2.1-4
has caused the Debian Bug report #1056509,
regarding python-tube's autopkg tests fail with Python 3.12
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1056509: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1056509
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:python-tubes
Version: 0.2.1-3
Severity: important
Tags: sid trixie
User: debian-pyt...@lists.debian.org
Usertags: python3.12

python-tube's autopkg tests fail with Python 3.12:

[...]
296s ======================================================================
296s ERROR: test_linesToBytes (test.test_framing.LineTests.test_linesToBytes)
296s Writing out lines delimits them, with the delimiter.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 94, in test_linesToBytes
296s     self.assertEquals(b"".join(fd.received), b"hello\r\nworld\r\n")
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'LineTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_rawMode (test.test_framing.LineTests.test_rawMode)
296s You should be able to have some lines, and then some bytes, and then
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 128, in test_rawMode
296s     self.assertEquals(b"".join(Switchee.datums), b"abcde\r\nfgh")
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'LineTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_stringToLines (test.test_framing.LineTests.test_stringToLines)
296s A line is something delimited by a LF or CRLF.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 81, in test_stringToLines
296s     splitALine(b"\n")
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 80, in splitALine
296s     self.assertEquals(fd.received, [b"alpha", b"beta"])
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'LineTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_switchingWithMoreDataToDeliver (test.test_framing.LineTests.test_switchingWithMoreDataToDeliver)
296s Switching drains should immediately stop delivering data.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 151, in test_switchingWithMoreDataToDeliver
296s     self.assertEquals(fd1.received, [b"something"])
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'LineTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_bytesToNetstrings (test.test_framing.NetstringTests.test_bytesToNetstrings)
296s L{bytesToNetstrings} works on subsequent inputs as well.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 45, in test_bytesToNetstrings
296s     self.assertEquals(
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'NetstringTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_netstringToString (test.test_framing.NetstringTests.test_netstringToString)
296s Length prefix is stripped off.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 62, in test_netstringToString
296s     self.assertEquals(fd.received, [b"x", b"yz"])
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'NetstringTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_stringToNetstring (test.test_framing.NetstringTests.test_stringToNetstring)
296s A byte-string is given a length prefix.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 30, in test_stringToNetstring
296s     self.assertEquals(
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'NetstringTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_prefixIn (test.test_framing.PackedPrefixTests.test_prefixIn)
296s Parse some prefixed data.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 170, in test_prefixIn
296s     self.assertEquals(fd.received, [b"12345678"])
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'PackedPrefixTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_prefixOut (test.test_framing.PackedPrefixTests.test_prefixOut)
296s Emit some prefixes.
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_framing.py", line 184, in test_prefixOut
296s     self.assertEquals(fd.received, [b'\x01a', b'\x02bc', b'\x03def'])
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'PackedPrefixTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ======================================================================
296s ERROR: test_specifiedTypeChecking (test.test_routing.RouterTests.test_specifiedTypeChecking)
296s The C{outputType} argument to L{Router}'s constructor specifies the
296s ----------------------------------------------------------------------
296s Traceback (most recent call last):
296s File "/tmp/autopkgtest.fbHH6R/autopkgtest_tmp/build/test/test_routing.py", line 92, in test_specifiedTypeChecking
296s     self.assertEquals(None, correctFount.flowTo(router.drain))
296s     ^^^^^^^^^^^^^^^^^
296s AttributeError: 'RouterTests' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
296s
296s ----------------------------------------------------------------------
296s Ran 137 tests in 0.072s
296s
296s FAILED (errors=10)

--- End Message ---
--- Begin Message ---
Source: python-tubes
Source-Version: 0.2.1-4
Done: Andrius Merkys <mer...@debian.org>

We believe that the bug you reported is fixed in the latest version of
python-tubes, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1056...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andrius Merkys <mer...@debian.org> (supplier of updated python-tubes package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 13 Dec 2023 08:26:09 -0500
Source: python-tubes
Architecture: source
Version: 0.2.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Andrius Merkys <mer...@debian.org>
Closes: 1056509 1058166
Changes:
 python-tubes (0.2.1-4) unstable; urgency=medium
 .
   * Fix deprecated assertEquals() (Closes: #1056509, #1058166)
Checksums-Sha1:
 9f05e3a7ad4fe764d7c456ae7bd1ead6cee6ec5a 2135 python-tubes_0.2.1-4.dsc
 a703bdaab0e87c7e67acac1c1c74030cdbbbb36d 6148 
python-tubes_0.2.1-4.debian.tar.xz
 bb0d038ea3fd2d6256d2fe25e0c560243fbc5ded 8240 
python-tubes_0.2.1-4_source.buildinfo
Checksums-Sha256:
 76636fae5c1dfbe4c95759ee44ab1af1e0456be11d6e7d42ed31fc21ac38560d 2135 
python-tubes_0.2.1-4.dsc
 77af891d1c55be88bb4f46035a5a0d99724bb5960ec2f52aa3af9748ef6a16ec 6148 
python-tubes_0.2.1-4.debian.tar.xz
 6e9b882cec446aa0d8933c625874f93d1e6ad028f8e3a207f08250d5557a0ce2 8240 
python-tubes_0.2.1-4_source.buildinfo
Files:
 4c618f5d46c3f624afe046884792095d 2135 python optional python-tubes_0.2.1-4.dsc
 d676cc3686d3562a64652298f49663f1 6148 python optional 
python-tubes_0.2.1-4.debian.tar.xz
 03d26e84f6db037c62e5214c038612b0 8240 python optional 
python-tubes_0.2.1-4_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAmV5sgoSHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKHRTUQAIb0zFVObf/+ajwR8RggNblH9kFWXO1J
OXsfIUCeq8GLxeXD/d54tIQWFtbJh+VSPjAUBJ9TuvML6rcJWQ9MpJHvbP63zNRB
HwKAJzwmFzqex6Ipr5+9pz9cFi2qcp+TBHK5KJaLnSecNhlEIFozmbj7UNf0pGRq
FJtJ/Dtr4nZF1XEr2xnN5Y7Dsfz3Rj4iJeIotN7C5C3xTDbH3bswu0+7aceYC+0m
YAFa6nwa/CLXU1G3dpsJJzUurSxUfGP7rrktfMaZ8J+Lp73EMwkVDF9LXJ0sUVlw
VP9GLgN3pM0FnqOBqn+yPypExjwcaxVumCJNg8QgPqd7UEMDX1smH7Oo5DiRtAWV
0VZFxHzK1Mi6AD4xy5D3OCUs/QK4BrP7+yTGND+p/xCFPaelDmiadSdXZ82WpEqo
IrHwM3EzWtBdQ6emidrUyHNTeSupYRDnrVgLnx5D6ChbZRscaYDhEOeFA1yG9W5p
eYGxh9J5MTD72V5133ez5V1Hvcbn6TTY71ciSMeztDcjKUaoskE0EPHgKtp7vn2e
ELTFyA1ULhmDXQDCn/56Zwz02kE3ao5XXPBF06RZ8Eyf/cOzKDzmr6X85rKuWYtl
fZ1F3YtjufRItp1mvPYb10MI18vpUUF0+eLm9/5MWsRyL57zRePLoSYK9zP0sAJR
ePrwi//Q4Q+w
=RAfg
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to