Skip to content

Commit 4f58448

Browse files
committed
Use a.example.com instead of example.org.
1 parent e5327b8 commit 4f58448

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

tests/expand-manifest.jsonld

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1448,23 +1448,23 @@
14481448
"purpose": "Tests embedded JSON-LD in HTML",
14491449
"input": "expand/h019-in.html",
14501450
"expect": "expand/h019-out.jsonld",
1451-
"option": {"specVersion": "json-ld-1.1", "base": "http://example.org/doc"}
1451+
"option": {"specVersion": "json-ld-1.1", "base": "http://a.example.com/doc"}
14521452
}, {
14531453
"@id": "#th020",
14541454
"@type": ["jld:PositiveEvaluationTest", "jld:ExpandTest"],
14551455
"name": "Expands embedded JSON-LD script element relative to HTML base",
14561456
"purpose": "Tests embedded JSON-LD in HTML",
14571457
"input": "expand/h020-in.html",
14581458
"expect": "expand/h020-out.jsonld",
1459-
"option": {"specVersion": "json-ld-1.1", "base": "http://example.org/doc"}
1459+
"option": {"specVersion": "json-ld-1.1", "base": "http://a.example.com/doc"}
14601460
}, {
14611461
"@id": "#th021",
14621462
"@type": ["jld:PositiveEvaluationTest", "jld:ExpandTest"],
14631463
"name": "Expands embedded JSON-LD script element relative to relative HTML base",
14641464
"purpose": "Tests embedded JSON-LD in HTML",
14651465
"input": "expand/h021-in.html",
14661466
"expect": "expand/h021-out.jsonld",
1467-
"option": {"specVersion": "json-ld-1.1", "base": "http://example.org/doc"}
1467+
"option": {"specVersion": "json-ld-1.1", "base": "http://a.example.com/doc"}
14681468
}, {
14691469
"@id": "#tm001",
14701470
"@type": ["jld:PositiveEvaluationTest", "jld:ExpandTest"],

tests/expand/h019-out.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[{
2-
"@id": "http://example.org/doc",
2+
"@id": "http://a.example.com/doc",
33
"http://example.com/foo": [{"@value": "bar"}]
44
}]

tests/expand/h020-in.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<html>
22
<head>
3-
<base href="http://example.org/base" />
3+
<base href="http://a.example.com/base" />
44
<script type="application/ld+json">
55
{
66
"@context": {

tests/expand/h020-out.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[{
2-
"@id": "http://example.org/base",
2+
"@id": "http://a.example.com/base",
33
"http://example.com/foo": [{"@value": "bar"}]
44
}]

tests/expand/h021-out.jsonld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[{
2-
"@id": "http://example.org/base",
2+
"@id": "http://a.example.com/base",
33
"http://example.com/foo": [{"@value": "bar"}]
44
}]

0 commit comments

Comments
 (0)