Skip to content

Commit

Permalink
Merge pull request #15 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
use BaseHandler CreateOSHandler
  • Loading branch information
Ali-YousefiTelori authored Oct 25, 2023
2 parents cc353a2 + 1050542 commit c7171f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class HostHttpHandlerTest : BaseHandlerTest
{
protected override BaseHandler GetHandler(ResourceManager resourceManager)
{
return new HostHttpHandler(resourceManager);
return BaseHandler.CreateOSHandler(resourceManager);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class HttpHandlerTest : BaseHandlerTest
{
protected override BaseHandler GetHandler(ResourceManager resourceManager)
{
return new HttpHandler(resourceManager);
return BaseHandler.CreateOSHandler(resourceManager);
}
}
}

0 comments on commit c7171f8

Please sign in to comment.