| Index: tests/PathTest.cpp | 
| diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp | 
| index e872b0c839699f307c70f2e3ace1b3c3256da35a..f9466f5944f6c074a666887599f6b9d9cb006e1b 100644 | 
| --- a/tests/PathTest.cpp | 
| +++ b/tests/PathTest.cpp | 
| @@ -1443,7 +1443,7 @@ static void test_isRect_open_close(skiatest::Reporter* reporter) { | 
| REPORTER_ASSERT(reporter, path.isRect(NULL, NULL)); | 
| REPORTER_ASSERT(reporter, path.isRect(&isClosed, NULL)); | 
| REPORTER_ASSERT(reporter, isClosed); | 
| -    REPORTER_ASSERT(reporter, SkPath::kFill_PathAsRect == path.asRect(NULL)); | 
| +    REPORTER_ASSERT(reporter, SkPath::kStroke_PathAsRect == path.asRect(NULL)); | 
| } | 
|  | 
| // Simple isRect test is inline TestPath, below. | 
| @@ -1562,7 +1562,7 @@ static void test_isRect(skiatest::Reporter* reporter) { | 
| REPORTER_ASSERT(reporter, isClosed == tests[testIndex].fClose); | 
| REPORTER_ASSERT(reporter, direction == cheapDirection); | 
| direction = (SkPath::Direction) -1; | 
| -            if (tests[testIndex].fClose) { | 
| +            if (!tests[testIndex].fClose) { | 
| REPORTER_ASSERT(reporter, SkPath::kFill_PathAsRect == path.asRect()); | 
| REPORTER_ASSERT(reporter, SkPath::kFill_PathAsRect == path.asRect(&direction)); | 
| } else { | 
|  |