Fix thread name in thread3; set to "User Session Three".

Optimze imports.
This commit is contained in:
John Blum
2021-07-27 15:23:48 -07:00
parent 7f2db4e9aa
commit 03c7a74fdb
2 changed files with 7 additions and 7 deletions

View File

@@ -23,13 +23,13 @@ import java.io.IOException;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicReference;
import edu.umd.cs.mtc.MultithreadedTestCase;
import edu.umd.cs.mtc.TestFramework;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import edu.umd.cs.mtc.MultithreadedTestCase;
import edu.umd.cs.mtc.TestFramework;
import org.apache.geode.cache.client.ClientRegionShortcut;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
@@ -192,7 +192,7 @@ public class MultiThreadedClientServerHttpSessionAttributesDeltaIntegrationTests
public void thread3() {
Thread.currentThread().setName("User Session Four");
Thread.currentThread().setName("User Session Three");
waitForTick(3);
assertTick(3);

View File

@@ -19,12 +19,12 @@ import static org.assertj.core.api.Assertions.assertThat;
import java.util.concurrent.atomic.AtomicReference;
import edu.umd.cs.mtc.MultithreadedTestCase;
import edu.umd.cs.mtc.TestFramework;
import org.junit.Test;
import org.junit.runner.RunWith;
import edu.umd.cs.mtc.MultithreadedTestCase;
import edu.umd.cs.mtc.TestFramework;
import org.apache.geode.cache.client.ClientRegionShortcut;
import org.springframework.data.gemfire.config.annotation.ClientCacheApplication;