Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar Otasevic committed Sep 9, 2024
1 parent 502662c commit 3a95d5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/ViewInspectionTests/Elements/_Binding.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import XCTest
@testable import ViewInspection

@MainActor final class Test_Binding: XCTestCase {
func testBinding() throws {
func test_Binding() throws {
struct Dummy: View {
@Binding var x: Int
let body = EmptyView()
Expand Down
2 changes: 1 addition & 1 deletion Tests/ViewInspectionTests/Elements/_Environment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import XCTest
@testable import ViewInspection

@MainActor final class Test_Environment: XCTestCase {
func testEnvironment() {
func test_Environment() {
struct Dummy: View {
@Environment(\.colorScheme) private var colorScheme
let body = EmptyView()
Expand Down
2 changes: 1 addition & 1 deletion Tests/ViewInspectionTests/Elements/_State.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import XCTest
@testable import ViewInspection

@MainActor final class Test_State: XCTestCase {
func testState() throws {
func test_State() throws {
struct Dummy: View {
@State private var x = 0
let body = EmptyView()
Expand Down

0 comments on commit 3a95d5b

Please sign in to comment.