support/testing: TestPythonPy3Incremental: update expected string

Since python-incremental 24.7.0, there is no longer a dot before an rc
specifier [1].

Update TestPythonPy3Incremental expected result to
"[package, version 1.2.3rc4]".

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/8199992642

[1] d482dfff3f

Signed-off-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Romain Naour 2024-11-02 18:01:28 +01:00 committed by Julien Olivain
parent 4c03568775
commit 9542e2904f

View File

@ -1,3 +1,3 @@
import incremental
v = incremental.Version("package", 1, 2, 3, release_candidate=4)
assert(str(v) == "[package, version 1.2.3.rc4]")
assert(str(v) == "[package, version 1.2.3rc4]")