Skip to content

Commit

Permalink
update comments and outdated variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 12, 2023
1 parent a20e1f3 commit 88282b9
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 124 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DartTestGroupExtensionsTest {
}

// when
val dartTestFiles = dartTestGroup.listTestsFlat()
val dartTests = dartTestGroup.listTestsFlat()

// then
assertContentEquals(
Expand All @@ -48,7 +48,7 @@ class DartTestGroupExtensionsTest {
dartTestCase { name = "open_app_test open maps" },
dartTestCase { name = "webview_test interacts with the LeanCode website in a webview" },
),
dartTestFiles,
dartTests,
)
}

Expand Down Expand Up @@ -96,7 +96,7 @@ class DartTestGroupExtensionsTest {
}

// when
val dartTestFiles = rootDartTestGroup.listTestsFlat()
val dartTests = rootDartTestGroup.listTestsFlat()

// then
assertContentEquals(
Expand All @@ -112,7 +112,7 @@ class DartTestGroupExtensionsTest {
dartTestCase { name = "open_app_test open maps" },
dartTestCase { name = "open_app_test open browser" },
),
dartTestFiles,
dartTests,
)
}
}
2 changes: 0 additions & 2 deletions packages/patrol/ios/Classes/PatrolAppServiceClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ import NIO
let request = Patrol_Empty()
let response = try await client.listDartTests(request)

NSLog("RAW: Got tests: \(response.group)")

return response.group.listTestsFlat(parentGroupName: "").map {
$0.name
}
Expand Down
Loading

0 comments on commit 88282b9

Please sign in to comment.