Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Pieter van Loon <[email protected]>
  • Loading branch information
dnfield and Kavantix authored Oct 7, 2020
commit a2b792b74b6d371110a2bf203058dadbd07ff9ab
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ - (void)setUp {

- (void)testSoftwareRendering {
self.application.launchArguments =
@[ @"--animated-color-sqaure", @"--assert-ca-layer-type", @"--enable-software-rendering" ];
@[ @"--animated-color-square", @"--assert-ca-layer-type", @"--enable-software-rendering" ];
[self.application launch];

// App asserts that the rendering API is CALayer
}

- (void)testMetalRendering {
self.application.launchArguments = @[ @"--animated-color-sqaure", @"--assert-ca-layer-type" ];
self.application.launchArguments = @[ @"--animated-color-square", @"--assert-ca-layer-type" ];
[self.application launch];

// App asserts that the rendering API is CAMetalLayer
Expand Down