Skip to content

Commit

Permalink
Don’t inherit SSKBaseTest where it’s not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
max-signal authored Jan 17, 2025
1 parent 9cc46a4 commit b32554c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SignalServiceKit/tests/Network/OWSRequestFactoryTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import XCTest

@testable import SignalServiceKit

class OWSRequestFactoryTest: SSKBaseTest {
class OWSRequestFactoryTest: XCTestCase {
private func getUdAccessKey() -> SMKUDAccessKey {
let profileKey = Aes256Key(data: Data(count: Int(Aes256Key.keyByteLength)))!
return SMKUDAccessKey(profileKey: profileKey)
Expand Down
2 changes: 1 addition & 1 deletion SignalServiceKit/tests/Util/LRUCacheTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import XCTest

@testable import SignalServiceKit

class LRUCacheTest: SSKBaseTest {
class LRUCacheTest: XCTestCase {
func testStringString() {
let cache = LRUCache<String, String>(maxSize: 16)
let key1 = "a"
Expand Down

0 comments on commit b32554c

Please sign in to comment.