Changeset 195144 in webkit


Ignore:
Timestamp:
Jan 15, 2016 1:18:28 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Fix some typos in unit tests
https://bugs.webkit.org/show_bug.cgi?id=153141

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-15
Reviewed by Brian Burg.

  • inspector/unit-tests/async-test-suite-expected.txt:
  • inspector/unit-tests/async-test-suite.html:
  • inspector/unit-tests/sync-test-suite-expected.txt:
  • inspector/unit-tests/sync-test-suite.html:

Fix some typos.

Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r195143 r195144  
     12016-01-15  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Fix some typos in unit tests
     4        https://bugs.webkit.org/show_bug.cgi?id=153141
     5
     6        Reviewed by Brian Burg.
     7
     8        * inspector/unit-tests/async-test-suite-expected.txt:
     9        * inspector/unit-tests/async-test-suite.html:
     10        * inspector/unit-tests/sync-test-suite-expected.txt:
     11        * inspector/unit-tests/sync-test-suite.html:
     12        Fix some typos.
     13
    1142016-01-15  Ryan Haddad  <ryanhaddad@apple.com>
    215
  • trunk/LayoutTests/inspector/unit-tests/async-test-suite-expected.txt

    r189213 r195144  
    6666PASS: Promise from setupFailureTestSuite.runTestCases() should reject.
    6767
    68 == Running test suite: SyncTestSuite.TeardownException
     68== Running test suite: AsyncTestSuite.TeardownException
    6969-- Running test case: TestWithExceptionDuringTeardown
    7070-- Running test teardown.
     
    7272PASS: Promise from teardownExceptionTestSuite.runTestCases() should reject.
    7373
    74 == Running test suite: SyncTestSuite.TeardownFailure
     74== Running test suite: AsyncTestSuite.TeardownFailure
    7575-- Running test case: TestWithExceptionDuringTeardown
    7676-- Running test teardown.
  • trunk/LayoutTests/inspector/unit-tests/async-test-suite.html

    r189213 r195144  
    328328    });
    329329
    330     let teardownExceptionTestSuite = ProtocolTest.createAsyncSuite("SyncTestSuite.TeardownException");
     330    let teardownExceptionTestSuite = ProtocolTest.createAsyncSuite("AsyncTestSuite.TeardownException");
    331331    teardownExceptionTestSuite.addTestCase({
    332332        name: "TestWithExceptionDuringTeardown",
     
    358358    });
    359359
    360     let teardownFailureTestSuite = ProtocolTest.createAsyncSuite("SyncTestSuite.TeardownFailure");
     360    let teardownFailureTestSuite = ProtocolTest.createAsyncSuite("AsyncTestSuite.TeardownFailure");
    361361    teardownFailureTestSuite.addTestCase({
    362362        name: "TestWithExceptionDuringTeardown",
  • trunk/LayoutTests/inspector/unit-tests/sync-test-suite-expected.txt

    r189213 r195144  
    11PASS: instantiating SyncTestSuite requires name argument.
    22PASS: instantiating SyncTestSuite requires string name argument.
    3 PASS: instantiating AsyncTestSuite requires non-whitespace name argument.
     3PASS: instantiating SyncTestSuite requires non-whitespace name argument.
    44PASS: instantiating SyncTestSuite requires test harness argument.
    55PASS: should not be able to add empty test case.
  • trunk/LayoutTests/inspector/unit-tests/sync-test-suite.html

    r189213 r195144  
    2121
    2222    try {
    23         let result = new syncTestSuite(this, "      ");
    24         ProtocolTest.log("FAIL: instantiating AsyncTestSuite requires non-whitespace name argument.");
    25     } catch (e) {
    26         ProtocolTest.log("PASS: instantiating AsyncTestSuite requires non-whitespace name argument.");
     23        let result = new SyncTestSuite(this, "      ");
     24        ProtocolTest.log("FAIL: instantiating SyncTestSuite requires non-whitespace name argument.");
     25    } catch (e) {
     26        ProtocolTest.log("PASS: instantiating SyncTestSuite requires non-whitespace name argument.");
    2727    }
    2828
Note: See TracChangeset for help on using the changeset viewer.