@@ -53,105 +53,105 @@ public void Create_DOTA2Econ_Interface_Should_Succeed()
5353 [ Fact ]
5454 public void Create_DOTA2Match_Interface_Should_Succeed ( )
5555 {
56- var steamInterface = factory . CreateSteamWebInterface < DOTA2Match > ( new HttpClient ( ) ) ;
56+ var steamInterface = factory . CreateSteamWebInterface < DOTA2Match > ( ) ;
5757 Assert . NotNull ( steamInterface ) ;
5858 }
5959
6060 [ Fact ]
6161 public void Create_DOTA2Ticket_Interface_Should_Succeed ( )
6262 {
63- var steamInterface = factory . CreateSteamWebInterface < DOTA2Ticket > ( new HttpClient ( ) ) ;
63+ var steamInterface = factory . CreateSteamWebInterface < DOTA2Ticket > ( ) ;
6464 Assert . NotNull ( steamInterface ) ;
6565 }
6666
6767 [ Fact ]
6868 public void Create_EconItems_Interface_Should_Succeed ( )
6969 {
70- var steamInterface = factory . CreateSteamWebInterface < EconItems > ( new HttpClient ( ) , EconItemsAppId . TeamFortress2 ) ;
70+ var steamInterface = factory . CreateSteamWebInterface < EconItems > ( EconItemsAppId . TeamFortress2 ) ;
7171 Assert . NotNull ( steamInterface ) ;
7272 }
7373
7474 [ Fact ]
7575 public void Create_EconService_Interface_Should_Succeed ( )
7676 {
77- var steamInterface = factory . CreateSteamWebInterface < EconService > ( new HttpClient ( ) ) ;
77+ var steamInterface = factory . CreateSteamWebInterface < EconService > ( ) ;
7878 Assert . NotNull ( steamInterface ) ;
7979 }
8080
8181 [ Fact ]
8282 public void Create_GameServersService_Interface_Should_Succeed ( )
8383 {
84- var steamInterface = factory . CreateSteamWebInterface < GameServersService > ( new HttpClient ( ) ) ;
84+ var steamInterface = factory . CreateSteamWebInterface < GameServersService > ( ) ;
8585 Assert . NotNull ( steamInterface ) ;
8686 }
8787
8888 [ Fact ]
8989 public void Create_GCVersion_Interface_Should_Succeed ( )
9090 {
91- var steamInterface = factory . CreateSteamWebInterface < GCVersion > ( new HttpClient ( ) , GCVersionAppId . TeamFortress2 ) ;
91+ var steamInterface = factory . CreateSteamWebInterface < GCVersion > ( GCVersionAppId . TeamFortress2 ) ;
9292 Assert . NotNull ( steamInterface ) ;
9393 }
9494
9595 [ Fact ]
9696 public void Create_PlayerService_Interface_Should_Succeed ( )
9797 {
98- var steamInterface = factory . CreateSteamWebInterface < PlayerService > ( new HttpClient ( ) ) ;
98+ var steamInterface = factory . CreateSteamWebInterface < PlayerService > ( ) ;
9999 Assert . NotNull ( steamInterface ) ;
100100 }
101101
102102 [ Fact ]
103103 public void Create_SteamApps_Interface_Should_Succeed ( )
104104 {
105- var steamInterface = factory . CreateSteamWebInterface < SteamApps > ( new HttpClient ( ) ) ;
105+ var steamInterface = factory . CreateSteamWebInterface < SteamApps > ( ) ;
106106 Assert . NotNull ( steamInterface ) ;
107107 }
108108
109109 [ Fact ]
110110 public void Create_SteamEconomy_Interface_Should_Succeed ( )
111111 {
112- var steamInterface = factory . CreateSteamWebInterface < SteamEconomy > ( new HttpClient ( ) ) ;
112+ var steamInterface = factory . CreateSteamWebInterface < SteamEconomy > ( ) ;
113113 Assert . NotNull ( steamInterface ) ;
114114 }
115115
116116 [ Fact ]
117117 public void Create_SteamNews_Interface_Should_Succeed ( )
118118 {
119- var steamInterface = factory . CreateSteamWebInterface < SteamNews > ( new HttpClient ( ) ) ;
119+ var steamInterface = factory . CreateSteamWebInterface < SteamNews > ( ) ;
120120 Assert . NotNull ( steamInterface ) ;
121121 }
122122
123123 [ Fact ]
124124 public void Create_SteamRemoteStorage_Interface_Should_Succeed ( )
125125 {
126- var steamInterface = factory . CreateSteamWebInterface < SteamRemoteStorage > ( new HttpClient ( ) ) ;
126+ var steamInterface = factory . CreateSteamWebInterface < SteamRemoteStorage > ( ) ;
127127 Assert . NotNull ( steamInterface ) ;
128128 }
129129
130130 [ Fact ]
131131 public void Create_SteamStore_Interface_Should_Succeed ( )
132132 {
133- var steamInterface = new SteamStore ( new HttpClient ( ) ) ;
133+ var steamInterface = new SteamStore ( ) ;
134134 Assert . NotNull ( steamInterface ) ;
135135 }
136136
137137 [ Fact ]
138138 public void Create_SteamUserAuth_Interface_Should_Succeed ( )
139139 {
140- var steamInterface = factory . CreateSteamWebInterface < SteamUserAuth > ( new HttpClient ( ) ) ;
140+ var steamInterface = factory . CreateSteamWebInterface < SteamUserAuth > ( ) ;
141141 Assert . NotNull ( steamInterface ) ;
142142 }
143143
144144 [ Fact ]
145145 public void Create_SteamUserStats_Interface_Should_Succeed ( )
146146 {
147- var steamInterface = factory . CreateSteamWebInterface < SteamUserStats > ( new HttpClient ( ) ) ;
147+ var steamInterface = factory . CreateSteamWebInterface < SteamUserStats > ( ) ;
148148 Assert . NotNull ( steamInterface ) ;
149149 }
150150
151151 [ Fact ]
152152 public void Create_SteamWebAPIUtil_Interface_Should_Succeed ( )
153153 {
154- var steamInterface = factory . CreateSteamWebInterface < SteamWebAPIUtil > ( new HttpClient ( ) ) ;
154+ var steamInterface = factory . CreateSteamWebInterface < SteamWebAPIUtil > ( ) ;
155155 Assert . NotNull ( steamInterface ) ;
156156 }
157157 }
0 commit comments