Make WordPress Core


Ignore:
Timestamp:
01/09/2019 11:13:03 AM (6 years ago)
Author:
pento
Message:

Tests: Revert [44509].

This commit causes Travis to fail.

See #45863.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-tests-config-sample.php

    r44509 r44512  
    22
    33/* Path to the WordPress codebase you'd like to test. Add a forward slash in the end. */
    4 define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
     4if ( defined( 'WP_RUN_CORE_TESTS' ) && WP_RUN_CORE_TESTS ) {
     5    define( 'ABSPATH', dirname( __FILE__ ) . '/build/' );
     6} else {
     7    define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
     8}
    59
    610/*
Note: See TracChangeset for help on using the changeset viewer.