diff --git a/tests/transformation/streamline/test_streamline_fc.py b/tests/transformation/streamline/test_streamline_fc.py
index dd7e756b4021af26c228804d4b509ecff032347e..9ce98066cfbf9d1c64514b957d8a260705fd0d7c 100644
--- a/tests/transformation/streamline/test_streamline_fc.py
+++ b/tests/transformation/streamline/test_streamline_fc.py
@@ -82,7 +82,7 @@ def test_streamline_fc(size, wbits, abits):
     model = model.transform(RemoveUnusedTensors())
     assert len(model.graph.initializer) == 11
     assert len(model.graph.value_info) == 21
-    assert len(model.graph.quantization_annotation) == 18
+    assert len(model.graph.quantization_annotation) == 20
     produced_ctx = oxe.execute_onnx(model, input_dict, True)
     produced = produced_ctx[model.graph.output[0].name]
     assert np.isclose(expected, produced, atol=1e-3).all()