File tree 2 files changed +2
-2
lines changed
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)
52
52
{
53
53
return new ( )
54
54
{
55
- Endpoint = new Uri ( $ "/ tables/{ entityType . Name . ToLowerInvariant ( ) } ", UriKind . Relative ) ,
55
+ Endpoint = new Uri ( $ "tables/{ entityType . Name . ToLowerInvariant ( ) } ", UriKind . Relative ) ,
56
56
HttpClient = HttpClientFactory . CreateClient ( ) ,
57
57
QueryDescription = new QueryDescription ( )
58
58
} ;
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ public void OfflineOptions_Defaults()
243
243
OfflineOptions options = sut . Build ( ) ;
244
244
EntityDatasyncOptions result = options . GetOptions ( typeof ( Entity3 ) ) ;
245
245
result . HttpClient . Should ( ) . NotBeNull ( ) ;
246
- result . Endpoint . ToString ( ) . Should ( ) . Be ( "/ tables/entity3" ) ;
246
+ result . Endpoint . ToString ( ) . Should ( ) . Be ( "tables/entity3" ) ;
247
247
result . QueryDescription . ToODataQueryString ( ) . Should ( ) . Be ( "" ) ;
248
248
}
249
249
}
You can’t perform that action at this time.
0 commit comments