tests: Fix sample mismatch test to fail again
The change to the render framework that fixed the number
of samples in the renderpass caused the sample mismatch
test to start "failing" by not seeing the expected error.
Changing num samples in the pipeline ms state in the test
is the easiest fix.
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index ba33b33..186dde2 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -1574,7 +1574,7 @@
const VkPipelineMsStateCreateInfo pipe_ms_state_ci = {
.sType = VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO,
.pNext = NULL,
- .samples = 1,
+ .samples = 4,
.multisampleEnable = 1,
.sampleShadingEnable = 0,
.minSampleShading = 1.0,