diff options
author | Damiano Galassi <[email protected]> | 2015-10-13 10:22:02 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-13 10:22:02 +0200 |
commit | 14839ed2b8a7e4615b2c30fe8a46bb63819d0b40 (patch) | |
tree | f8684e1d7eb41fa1df0c420da50cd4f53f692e64 /macosx/HandBrake Tests | |
parent | b8bcf81a60e505135cab3f6deeb090989012ba5e (diff) |
MacGui: remove some HBPreset -> NSDictionary conversions and add a mutable version of HBPreset.
Diffstat (limited to 'macosx/HandBrake Tests')
-rw-r--r-- | macosx/HandBrake Tests/HBJobTests.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HandBrake Tests/HBJobTests.m b/macosx/HandBrake Tests/HBJobTests.m index c63fce273..19351bbfb 100644 --- a/macosx/HandBrake Tests/HBJobTests.m +++ b/macosx/HandBrake Tests/HBJobTests.m @@ -77,7 +77,7 @@ - (void)testAutoCrop { - XCTAssertEqual([self.preset.content[@"PictureAutoCrop"] boolValue], self.job.picture.autocrop); + XCTAssertEqual([self.preset[@"PictureAutoCrop"] boolValue], self.job.picture.autocrop); } - (void)testAutoCropValues |