Skip to content

Commit c9f38b7

Browse files
Merge pull request #133 from BlockScience/dev
fix: resolve CodeQL URL substring sanitization alert
2 parents 294dc01 + 4cae7ec commit c9f38b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/gds-owl/tests/test_export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_wires_exported(self, thermostat_spec: GDSSpec) -> None:
137137
def test_custom_base_uri(self, thermostat_spec: GDSSpec) -> None:
138138
g = spec_to_graph(thermostat_spec, base_uri="https://example.com/")
139139
ttl = g.serialize(format="turtle")
140-
assert "example.com" in ttl
140+
assert "https://example.com/" in ttl
141141

142142

143143
class TestSystemIRToGraph:

0 commit comments

Comments
 (0)