| Index: android_webview/javatests/src/org/chromium/android_webview/test/AndroidViewIntegrationTest.java
|
| diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AndroidViewIntegrationTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AndroidViewIntegrationTest.java
|
| index bc625e50befb7fddc1f20806013f2819ed3ddcc8..f54829d75f2916e7fa5e46bef633831bc8e76140 100644
|
| --- a/android_webview/javatests/src/org/chromium/android_webview/test/AndroidViewIntegrationTest.java
|
| +++ b/android_webview/javatests/src/org/chromium/android_webview/test/AndroidViewIntegrationTest.java
|
| @@ -34,12 +34,12 @@ public class AndroidViewIntegrationTest extends AwTestBase {
|
| private int mHeight;
|
|
|
| public int getWidth() {
|
| - assert(getCallCount() > 0);
|
| + assert getCallCount() > 0;
|
| return mWidth;
|
| }
|
|
|
| public int getHeight() {
|
| - assert(getCallCount() > 0);
|
| + assert getCallCount() > 0;
|
| return mHeight;
|
| }
|
|
|
|
|