Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/gds-owl/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
def test_custom_base_uri(self, thermostat_spec: GDSSpec) -> None:
g = spec_to_graph(thermostat_spec, base_uri="https://example.com/")
ttl = g.serialize(format="turtle")
assert "example.com" in ttl
assert "https://example.com/" in ttl

Check failure

Code scanning / CodeQL

Incomplete URL substring sanitization High test

The string
https://example.com/
may be at an arbitrary position in the sanitized URL.

Copilot Autofix

AI 4 days ago

Copilot could not generate an autofix suggestion

Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.



class TestSystemIRToGraph:
Expand Down
Loading