We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb0a1e commit e197a04Copy full SHA for e197a04
snd/test/src/org/labkey/test/tests/snd/SNDTest.java
@@ -2223,16 +2223,9 @@ public void testQueryProvisionedSnapshot()
2223
"kit_type\n" +
2224
"FROM SND.Categories.Sodium\n";
2225
2226
- String UPDATED_SOURCE_QUERY = "SELECT\n" +
2227
- "lsid AS _key,\n" +
2228
- "SubjectId AS participantid,\n" +
2229
- "date,\n" +
2230
- "qcstate,\n" +
2231
- "lsid,\n" +
2232
- "'8976' AS amount,\n" +
2233
- "units,\n" +
2234
- "kit_type\n" +
2235
- "FROM SND.Categories.Sodium";
+ String UPDATED_SOURCE_QUERY = SOURCE_QUERY.replace(
+ "amount,",
+ "'8976' AS amount,");
2236
2237
log("Run the tests from the framework for set up");
2238
if (!runTestsInAPIFrameWork())
0 commit comments