Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rofle100lvl committed Aug 11, 2024
1 parent 813e9cd commit a644107
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ var targets: [PackageDescription.Target] = [
.target(
name: "TestShared",
dependencies: [
.target(name: "PeripheryKit")
.target(name: "PeripheryKit"),
.target(name: "ProjetDrivers")
],
path: "Tests/Shared"
),
Expand Down Expand Up @@ -138,6 +139,7 @@ targets.append(contentsOf: [
.testTarget(
name: "XcodeTests",
dependencies: [
.target(name: "ProjetDrivers"),
.target(name: "TestShared"),
.target(name: "PeripheryKit"),
.target(name: "XcodeSupport")
Expand Down
2 changes: 1 addition & 1 deletion Tests/Shared/SPMSourceGraphTestCase.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Foundation
import PeripheryKit
import Shared
import ProjetDrivers
import SystemPackage

class SPMSourceGraphTestCase: SourceGraphTestCase {
Expand Down
1 change: 1 addition & 0 deletions Tests/XcodeTests/XcodeSourceGraphTestCase.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Foundation
import Shared
import ProjetDrivers
import SystemPackage
@testable import TestShared
import XcodeSupport
Expand Down

0 comments on commit a644107

Please sign in to comment.