Skip to content

Commit dfee08f

Browse files
committed
Remove some unnecessary test prints
1 parent f4b0550 commit dfee08f

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

integration-tests/src/test/java/com/datastax/oss/driver/mapper/SelectBypassCacheIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ public void should_select_with_bypass_cache() {
131131
// BYPASS CACHE is transparent for the driver - this just checks for exceptions
132132
PagingIterable<Simple> result = dao.selectWithBypassCache(0, 0);
133133
assertThat(result.all()).hasSize(1).containsOnly(new Simple(0, 0, 1));
134-
System.out.println(result.getExecutionInfo().getRequest());
135134
}
136135

137136
@Mapper

mapper-processor/src/test/java/com/datastax/oss/driver/internal/mapper/processor/dao/DaoSelectMethodGeneratorTest.java

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,11 @@ public void should_process_timeout(String timeout, CodeBlock expected) {
107107

108108
@Test
109109
public void should_process_bypass_cache() {
110-
System.out.println("aaa");
111-
System.out.println(
112-
MethodSpec.methodBuilder("select")
113-
.addAnnotation(
114-
AnnotationSpec.builder(Select.class).addMember("bypassCache", "true").build())
115-
.addModifiers(Modifier.PUBLIC, Modifier.ABSTRACT)
116-
.returns(ParameterizedTypeName.get(CompletionStage.class, Integer.class))
117-
.build());
110+
MethodSpec.methodBuilder("select")
111+
.addAnnotation(
112+
AnnotationSpec.builder(Select.class).addMember("bypassCache", "true").build())
113+
.addModifiers(Modifier.PUBLIC, Modifier.ABSTRACT)
114+
.returns(ParameterizedTypeName.get(CompletionStage.class, Integer.class))
115+
.build();
118116
}
119117
}

0 commit comments

Comments
 (0)