Skip to content

Commit e725f2a

Browse files
committed
Fix use if undefined term in specs.
1 parent 22e8806 commit e725f2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/flatten_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"foaf" => RDF::FOAF.to_s
2020
},
2121
"@id" => "http://greggkellogg.net/foaf",
22-
"@type" => ["foaf:PersonalProfile"],
22+
"@type" => ["foaf:PersonalProfileDocument"],
2323
"foaf:primaryTopic" => [{
2424
"@id" => "http://greggkellogg.net/foaf#me",
2525
"@type" => ["foaf:Person"]
@@ -28,7 +28,7 @@
2828
:output => [
2929
{
3030
"@id" => "http://greggkellogg.net/foaf",
31-
"@type" => [RDF::FOAF.PersonalProfile.to_s],
31+
"@type" => [RDF::FOAF.PersonalProfileDocument.to_s],
3232
RDF::FOAF.primaryTopic.to_s => [{"@id" => "http://greggkellogg.net/foaf#me"}]
3333
},
3434
{
@@ -43,7 +43,7 @@
4343
"foaf" => RDF::FOAF.to_s
4444
},
4545
"@id" => "http://greggkellogg.net/foaf",
46-
"@type" => "foaf:PersonalProfile",
46+
"@type" => "foaf:PersonalProfileDocument",
4747
"foaf:primaryTopic" => {
4848
"@type" => "foaf:Person"
4949
}
@@ -55,7 +55,7 @@
5555
},
5656
{
5757
"@id" => "http://greggkellogg.net/foaf",
58-
"@type" => [RDF::FOAF.PersonalProfile.to_s],
58+
"@type" => [RDF::FOAF.PersonalProfileDocument.to_s],
5959
RDF::FOAF.primaryTopic.to_s => [{"@id" => "_:b0"}]
6060
}
6161
]

0 commit comments

Comments
 (0)