Skip to content

Commit 15107bb

Browse files
committed
tests: Fixup the tests for the new v25.05gl1 version
1 parent d6e6c35 commit 15107bb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

libs/gl-testing/gltesting/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def is_compat(self, nv: NodeVersion) -> bool:
2020
"v23.08": ["v23.08gl1"],
2121
"v24.02": ["v24.02gl1"],
2222
"v24.11": ["v24.11gl1"],
23+
"v25.05": ["v25.05gl1"],
2324
}
2425

2526
return self.name in compat[nv.name]
@@ -37,6 +38,7 @@ def get_node_version(self):
3738
"v23.08": "v23.08gl1",
3839
"v24.02": "v24.02gl1",
3940
"v24.11": "v24.11gl1",
41+
"v25.05": "v25.05gl1",
4042
}
4143
return m[self.name]
4244

libs/gl-testing/tests/test_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def test_vls_crash_repro(
455455
) -> None:
456456
"""Reproduce an overflow panic in VLS v0.10.0."""
457457
(l1,) = node_factory.line_graph(1, opts={"experimental-anchors": None})
458-
assert l1.rpc.getinfo()["version"] == "v24.11gl1"
458+
assert l1.rpc.getinfo()["version"] == "v25.05gl1"
459459

460460
c = clients.new()
461461
c.register(configure=True)

0 commit comments

Comments
 (0)