Update VE core submodule to master (fbeb0db2c)

New changes:
d61440346 Add logging to the rebase server and client
d1d2539ae rebaser: Add script to convert a log file to a test case
0896d5f05 lib: Update README files for OOjs and OOjs UI
045ae87fb Localisation updates from https://translatewiki.net.
04b276e16 VisualDiff: Make annotation whitespace trimming configurable
dd04912e5 Localisation updates from https://translatewiki.net.
11fc30709 MobileContext: fix button spacing
7898acd0b Fix typos and minor lint issues
4e3e2deb9 Avoid using the global namespace in test files
1ed81efa1 build: Update eslint to 0.4.0 and make a pass

Bug: T163473
Bug: T164166
Change-Id: I4bab4260d6b05ff0277cacd167186336acc02080
This commit is contained in:
James D. Forrester 2017-05-08 14:45:28 -07:00 committed by David Lynch
parent d4c9638508
commit 229d6cdf3b
2 changed files with 2 additions and 4 deletions

2
lib/ve

@ -1 +1 @@
Subproject commit 3b8a164a37ae9d5893a4998638b2e3dc2c92a41d
Subproject commit fbeb0db2c2aec9f6d4caf035363af2b07e2ca946

View file

@ -4,8 +4,6 @@
* @copyright 2011-2017 VisualEditor Team and others; see http://ve.mit-license.org
*/
/* global runUrlStringHandlerTest */
QUnit.module( 've.ui.UrlStringTransferHandler (MW)' );
/* Tests */
@ -37,6 +35,6 @@ QUnit.test( 'paste', function ( assert ) {
];
for ( i = 0; i < cases.length; i++ ) {
runUrlStringHandlerTest( assert, cases[ i ].pasteString, cases[ i ].pasteHtml, cases[ i ].pasteType, cases[ i ].expectedData, cases[ i ].msg );
ve.test.utils.runUrlStringHandlerTest( assert, cases[ i ].pasteString, cases[ i ].pasteHtml, cases[ i ].pasteType, cases[ i ].expectedData, cases[ i ].msg );
}
} );