[mlir][sparse] fix typos in integration tests

Reviewed By: bixia, wrengr

Differential Revision: https://reviews.llvm.org/D114820

GitOrigin-RevId: fe0508dc9d42201128a5b9016350e31b0ab41a79
diff --git a/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir b/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
index 0834323..f15f0a6 100644
--- a/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
+++ b/test/Integration/Dialect/SparseTensor/CPU/sparse_out_reduction.mlir
@@ -67,7 +67,6 @@
     %st2 = sparse_tensor.convert %t2
       : tensor<3x3x4xi32> to tensor<?x?x?xi32, #SparseTensor>
 
-
     // Call kernel.
     %0 = call @redsum(%st1, %st2)
       : (tensor<?x?x?xi32, #SparseTensor>,
diff --git a/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir b/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
index d076ec5..ee56288 100644
--- a/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
+++ b/test/Integration/Dialect/SparseTensor/CPU/sparse_out_simple.mlir
@@ -36,7 +36,7 @@
     affine_map<(i,j) -> (i,j)>  // X (out)
   ],
   iterator_types = ["parallel", "parallel"],
-  doc = "X(i,j) += X(i,j) * X(i,j)"
+  doc = "X(i,j) *= X(i,j)"
 }
 
 //