diff options
author | Timmy Willison <4timmywil@gmail.com> | 2018-11-26 12:46:58 -0500 |
---|---|---|
committer | Timmy Willison <4timmywil@gmail.com> | 2018-11-26 12:46:58 -0500 |
commit | b8195fb94c59e48c043bae3d10f8b4f1ea0b967c (patch) | |
tree | 5abfa690361d8900dc444e22573a6fcb9c9b981d /test | |
parent | e0d941156900a6bff7c098c8ea7290528e468cf8 (diff) | |
download | jquery-b8195fb94c59e48c043bae3d10f8b4f1ea0b967c.tar.gz jquery-b8195fb94c59e48c043bae3d10f8b4f1ea0b967c.zip |
Tests: fix ajax test failure; add to header instead of replace
Diffstat (limited to 'test')
-rw-r--r-- | test/data/mock.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/mock.php b/test/data/mock.php index 937e331bf..79110dc45 100644 --- a/test/data/mock.php +++ b/test/data/mock.php @@ -115,7 +115,7 @@ ok( true, "mock executed");'; header( 'Empty-Header: ' ); header( 'Sample-Header2: Hello World 2' ); header( 'List-Header: Item 1' ); - header( 'list-header: Item 2' ); + header( 'list-header: Item 2', FALSE ); header( 'constructor: prototype collision (constructor)' ); foreach ( explode( '|' , $req->query[ 'keys' ] ) as $key ) { |