Skip to content

Commit 85cf70f

Browse files
committedNov 24, 2023
Cleanup
1 parent 2c3e33c commit 85cf70f

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed
 

‎QuantConnect.BybitBrokerage.Tests/BybitInverseFuturesBrokerageHistoryProviderTests.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public class BybitInverseFuturesBrokerageHistoryProviderTests : BybitBrokerageHi
2323
{
2424
private static readonly Symbol ETHUSD = Symbol.Create("ETHUSDT", SecurityType.CryptoFuture, Market.Bybit);
2525

26-
2726
private static TestCaseData[] ValidHistory
2827
{
2928
get
@@ -39,8 +38,7 @@ private static TestCaseData[] ValidHistory
3938
};
4039
}
4140
}
42-
43-
41+
4442
[Test, TestCaseSource(nameof(ValidHistory))]
4543
public override void GetsHistory(Symbol symbol, Resolution resolution, TimeSpan period, TickType tickType)
4644
{

‎QuantConnect.BybitBrokerage.Tests/BybitInverseFuturesBrokerageTests.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public partial class BybitInverseFuturesBrokerageTests : BybitBrokerageTests
3131

3232
protected override decimal GetDefaultQuantity() => 10m;
3333

34-
3534
/// <summary>
3635
/// Provides the data required to test each order type in various cases
3736
/// </summary>
@@ -47,8 +46,7 @@ private static TestCaseData[] OrderParameters()
4746
"LimitIfTouchedOrder")
4847
};
4948
}
50-
51-
49+
5250
[Test, TestCaseSource(nameof(OrderParameters))]
5351
public override void CancelOrders(OrderTestParameters parameters)
5452
{

‎QuantConnect.BybitBrokerage/Models/Enums/PositionMode.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
14-
*/
15-
16-
using System.Runtime.Serialization;
14+
*/
1715

1816
namespace QuantConnect.BybitBrokerage.Models.Enums;
1917

@@ -26,6 +24,7 @@ public enum PositionMode
2624
/// One way mode
2725
/// </summary>
2826
MergedSingle = 0,
27+
2928
/// <summary>
3029
/// Hedge mode
3130
/// </summary>

0 commit comments

Comments
 (0)