diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt
index cde7af5fb0d2213b08bde9a249ee4051fd92f692..4cc24ee37d6bbda865b5342b6dc317802d931e93 100755
--- a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt
+++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt
@@ -45,7 +45,7 @@ df = get_pandas_dataframe(ntuple, 'DimuonsTuple/DecayTree')
 # Check ntuple structure
 if df.empty:
     causes.append(f"File {ntuple}: ntuple does not contain any branches")
-if df.shape != (8, 12):
+if df.shape != (9, 12):
     causes.append("Ntuple not with expected number of entries and/or branches")
 
 # Check there are no NaN values in the ntuple
diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt
index 4fcbbf7f3620dbb50863a30b80757f40db70178f..c14a72b2a09da2d4db562a6eb7adc70283dea882 100644
--- a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt
+++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt
@@ -52,7 +52,7 @@ if df1.empty:
     causes.append(f"File {ntuple}: ntuple 'DimuonsTuple/DecayTree' does not contain any branches")
 if df2.empty:
     causes.append(f"File: {ntuple}: ntuple 'KsTuple/DecayTree' does not contain any branches")
-if df1.shape != (8, 12):
+if df1.shape != (9, 12):
     causes.append("Ntuple 'DimuonsTuple/DecayTree' not with expected number of entries and/or branches")
 # FIXME: check disabled because 8(7) candidates are tupled with(out) DD4hep!
 # No appetite to investigate since we should soon update the input files used.