Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit ee69fed

Browse files
committed
Fix linux tests.
1 parent 695a77c commit ee69fed

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: Tests/DeepLearningTests/XCTestManifests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import XCTest
1717
#if !os(macOS)
1818
public func allTests() -> [XCTestCaseEntry] {
1919
return [
20+
testCase(PRNGTests.allTests),
2021
testCase(TrivialModelTests.allTests),
2122
]
2223
}

Diff for: Tests/LinuxMain.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import XCTest
22

3-
import MachineLearningTests
3+
import DeepLearningTests
44

55
var tests = [XCTestCaseEntry]()
6-
tests += MachineLearningTests.allTests()
6+
tests += DeepLearningTests.allTests()
77
XCTMain(tests)

0 commit comments

Comments
 (0)