File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
spring-test/src/test/java/org/springframework/test/web/client/samples Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
26
26
import org .springframework .test .web .Person ;
27
27
import org .springframework .test .web .client .MockRestServiceServer ;
28
28
import org .springframework .util .concurrent .ListenableFuture ;
29
- import org .springframework .web .client .AsyncRestTemplate ;
30
29
31
30
import static org .junit .Assert .*;
32
31
import static org .springframework .test .web .client .ExpectedCount .manyTimes ;
45
44
@ SuppressWarnings ("deprecation" )
46
45
public class SampleAsyncTests {
47
46
48
- private final AsyncRestTemplate restTemplate = new AsyncRestTemplate ();
47
+ private final org . springframework . web . client . AsyncRestTemplate restTemplate = new org . springframework . web . client . AsyncRestTemplate ();
49
48
50
49
private final MockRestServiceServer mockServer = MockRestServiceServer .createServer (this .restTemplate );
51
50
You can’t perform that action at this time.
0 commit comments