From 31d4ae82e9b3b2e85f5159dca65205238e907530 Mon Sep 17 00:00:00 2001 From: Murilo Pereira Date: Thu, 7 Nov 2019 14:35:59 +0100 Subject: [PATCH] Fix custom JVM options test name. --- tests/suites/sanity_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/sanity_test.go b/tests/suites/sanity_test.go index 9b183f91..3c4d45f1 100644 --- a/tests/suites/sanity_test.go +++ b/tests/suites/sanity_test.go @@ -112,7 +112,7 @@ var _ = Describe(TestName, func() { Expect(configuration[parameter]).To(Equal(desiredValue)) }) - It("Configures Cassandra JVM properties through custom YAML", func() { + It("Configures Cassandra JVM options through custom options", func() { parameter := "-XX:CMSWaitDuration" initialValue := "10000" desiredValue := "11000"