bin/check-missing-export-asserts.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d305470db4fef3b497675c3f5067f74e8333c652
Author:     LeSasse <l.sa...@fz-juelich.de>
AuthorDate: Wed Mar 27 09:53:25 2024 +0100
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Thu Mar 28 08:45:38 2024 +0100

    tdf#158803 unncessary semicolons
    
    Change-Id: I1f4fc8661e31d7e17f4fd59988e15635f3318dc2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165380
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Tested-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/bin/check-missing-export-asserts.py 
b/bin/check-missing-export-asserts.py
index 2e181027d9c9..9f0fb52da516 100755
--- a/bin/check-missing-export-asserts.py
+++ b/bin/check-missing-export-asserts.py
@@ -130,10 +130,10 @@ def insert_code_in_sw_model(repoPath, modelTestRelPath):
                 addText = False
 
         if addText and 'reload' in line:
-            modelTestLines.insert( i - 1, 'int nImportPages = getPages();int 
nImportShapes = getShapes();
');
+            modelTestLines.insert( i - 1, 'int nImportPages = getPages();int 
nImportShapes = getShapes();
')
             modelTestLines.insert( i + 2, 'int nExportPages = getPages();int 
nExportShapes = getShapes();SAL_' + \
                 'DEBUG("PAGES - " << filename << " - " << nImportPages << " - 
" << nExportPages);SAL_' + \
-                'DEBUG("SHAPES - " << filename << " - " << nImportShapes << " 
- " << nExportShapes);
');
+                'DEBUG("SHAPES - " << filename << " - " << nImportShapes << " 
- " << nExportShapes);
')
             addText = False
 
     modelTestFile = open(modelTestPath, 'w')

Reply via email to