Changeset 5178

Show
Ignore:
Timestamp:
01/21/08 19:18:23 (5 years ago)
Author:
hsbt
Message:

platform/tdiary/*/account_ad*: fix typo.

Location:
platform/tdiary
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • platform/tdiary/plugin/account_ad.rb

    r5175 r5178  
    3131                           <foaf:maker rdf:parseType="Resource"> 
    3232                             <foaf:holdsAccount> 
    33                                <foaf:OnlineAccount foaf:accountName="#{h(account_name)}"> 
    34                                   <foaf:accountServiceHomepage rdf:resource="#{h(account_service)}"/> 
     33                               <foaf:OnlineAccount foaf:accountName="#{h account_name}"> 
     34                                 <foaf:accountServiceHomepage rdf:resource="#{h account_service}" /> 
    3535                               </foaf:OnlineAccount> 
    3636                             </foaf:holdsAccount> 
  • platform/tdiary/spec/account_ad_spec.rb

    r5175 r5178  
    2828        def include_account_service_with(options) 
    2929                msg = "include #{options[:service]}" 
    30                 expected = %|<foaf:accountServiceHomepage rdf:resource="#{options[:service]}"/>| 
     30                expected = %|<foaf:accountServiceHomepage rdf:resource="#{options[:service]}" />| 
    3131                        Spec::Matchers::SimpleMatcher.new(msg) do |actual| 
    3232                        actual.include?(expected)