Move InterfaceSubscriptionsIT test back into 1.dev suite

This commit is contained in:
Dylan Thinnes 2022-08-23 12:50:04 +01:00
parent c2d1499747
commit abf5267051
3 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,6 @@ package object v1_15 {
def default(timeoutScaleFactor: Double): Vector[LedgerTestSuite] =
v1_14.default(timeoutScaleFactor) ++ Vector(
new InterfaceIT,
new InterfaceSubscriptionsIT,
)
def optional(tlsConfig: Option[TlsConfiguration]): Vector[LedgerTestSuite] =

View File

@ -8,7 +8,9 @@ import com.daml.ledger.api.tls.TlsConfiguration
package object v1_dev {
def default(timeoutScaleFactor: Double): Vector[LedgerTestSuite] =
v1_15.default(timeoutScaleFactor)
v1_15.default(timeoutScaleFactor) ++ Vector(
new InterfaceSubscriptionsIT,
)
def optional(tlsConfig: Option[TlsConfiguration]): Vector[LedgerTestSuite] =
v1_15.optional(tlsConfig)

View File

@ -1,7 +1,7 @@
// Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package com.daml.ledger.api.testtool.suites.v1_15
package com.daml.ledger.api.testtool.suites.v1_dev
import com.daml.error.definitions.LedgerApiErrors
import com.daml.ledger.api.refinements.ApiTypes.TemplateId