Fix indentation

Change-Id: I985562995714c04c569e3a794cf748443ed02865
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165886
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
This commit is contained in:
Stephan Bergmann 2024-04-08 15:15:33 +02:00
parent ccebd10bc4
commit c16f7ca43b

View File

@ -539,11 +539,11 @@ Module.addOnPostRun(function() {
console.assert(test.isDouble(uno.org.libreoffice.embindtest.Constants.Double));
try {
test.throwRuntimeException();
} catch (e) {
console.assert(e.name === 'com::sun::star::uno::RuntimeException');
console.assert(e.message === undefined); //TODO
//TODO: console.assert(e.Message.startsWith('test'));
}
} catch (e) {
console.assert(e.name === 'com::sun::star::uno::RuntimeException');
console.assert(e.message === undefined); //TODO
//TODO: console.assert(e.Message.startsWith('test'));
}
});
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */