File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public EntityDatasyncOptions GetOptions(Type entityType)
5252 {
5353 return new ( )
5454 {
55- Endpoint = new Uri ( $ "/ tables/{ entityType . Name . ToLowerInvariant ( ) } ", UriKind . Relative ) ,
55+ Endpoint = new Uri ( $ "tables/{ entityType . Name . ToLowerInvariant ( ) } ", UriKind . Relative ) ,
5656 HttpClient = HttpClientFactory . CreateClient ( ) ,
5757 QueryDescription = new QueryDescription ( )
5858 } ;
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ public void OfflineOptions_Defaults()
243243 OfflineOptions options = sut . Build ( ) ;
244244 EntityDatasyncOptions result = options . GetOptions ( typeof ( Entity3 ) ) ;
245245 result . HttpClient . Should ( ) . NotBeNull ( ) ;
246- result . Endpoint . ToString ( ) . Should ( ) . Be ( "/ tables/entity3" ) ;
246+ result . Endpoint . ToString ( ) . Should ( ) . Be ( "tables/entity3" ) ;
247247 result . QueryDescription . ToODataQueryString ( ) . Should ( ) . Be ( "" ) ;
248248 }
249249}
You can’t perform that action at this time.
0 commit comments