Improved Query Readability

This commit is contained in:
luca.frosini 2023-09-27 15:17:54 +02:00
parent c34c5f9a59
commit 9b3ffcf5b4
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class QueryTest extends ERManagementTest {
public void testRawQuery() throws InvalidQueryException {
QueryImpl queryImpl = new QueryImpl();
String query = "select from SoftwareFacet";
String query = "SELECT FROM SoftwareFacet";
String ret = queryImpl.query(query, false);
logger.debug(ret);