Skip to content

Commit 3cf2507

Browse files
committed
Fix test issue
1 parent 5b233aa commit 3cf2507

7 files changed

+7
-7
lines changed

Tests/LiveKitTests/DataStream/ByteStreamInfoTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class ByteStreamInfoTests: XCTestCase {
20+
class ByteStreamInfoTests: LKTestCase {
2121
func testProtocolTypeConversion() {
2222
let info = ByteStreamInfo(
2323
id: "id",

Tests/LiveKitTests/DataStream/ByteStreamReaderTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class ByteStreamReaderTests: XCTestCase {
20+
class ByteStreamReaderTests: LKTestCase {
2121
private var continuation: StreamReaderSource.Continuation!
2222
private var reader: ByteStreamReader!
2323

Tests/LiveKitTests/DataStream/FileInfoTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class FileInfoTests: XCTestCase {
20+
class FileInfoTests: LKTestCase {
2121
func testReadInfo() throws {
2222
try testReadInfo(mimeType: "text/plain")
2323
try testReadInfo(mimeType: "application/json")

Tests/LiveKitTests/DataStream/IncomingStreamManagerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class IncomingStreamManagerTests: XCTestCase {
20+
class IncomingStreamManagerTests: LKTestCase {
2121
private var manager: IncomingStreamManager!
2222

2323
private let topicName = "someTopic"

Tests/LiveKitTests/DataStream/OutgoingStreamManagerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class OutgoingStreamManagerTests: XCTestCase {
20+
class OutgoingStreamManagerTests: LKTestCase {
2121
func testStreamBytes() async throws {
2222
let headerExpectation = expectation(description: "Produces header packet")
2323
let chunkExpectation = expectation(description: "Produces chunk packets")

Tests/LiveKitTests/DataStream/TextStreamInfoTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class TextStreamInfoTests: XCTestCase {
20+
class TextStreamInfoTests: LKTestCase {
2121
func testProtocolTypeConversion() {
2222
let info = TextStreamInfo(
2323
id: "id",

Tests/LiveKitTests/DataStream/TextStreamReaderTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@testable import LiveKit
1818
import XCTest
1919

20-
class TextStreamReaderTests: XCTestCase {
20+
class TextStreamReaderTests: LKTestCase {
2121
private var continuation: StreamReaderSource.Continuation!
2222
private var reader: TextStreamReader!
2323

0 commit comments

Comments
 (0)