We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f99e3e commit 1ffb4f9Copy full SHA for 1ffb4f9
src/test/java/examples/schema_supplier/SchemaSupplierTest.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2016-2020 the original author or authors.
+ * Copyright 2016-2022 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -99,7 +99,7 @@ void testSchemaSwitchingProperty() {
99
insertFlintstones(mapper);
100
101
List<User> records = mapper.select(SelectDSLCompleter.allRows());
102
- assertThat(records.size()).isEqualTo(2);
+ assertThat(records).hasSize(2);
103
104
105
System.setProperty(SchemaSupplier.schema_property, "schema2");
0 commit comments