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 a012182 commit 9cb7d02Copy full SHA for 9cb7d02
snd/test/src/org/labkey/test/tests/snd/SNDTest.java
@@ -2178,9 +2178,9 @@ public void categoryPermissionsUI() throws Exception
2178
2179
for (Integer r : categoryRows.values())
2180
{
2181
- String value = getPermissionTableValue(r, 1);
2182
// Wait for setting to propagate
2183
- Awaitility.await().atMost(Duration.ofSeconds(1)).untilAsserted(() -> assertEquals("SND Reader", value));
+ Awaitility.await().atMost(Duration.ofSeconds(1)).untilAsserted(() ->
+ assertEquals("SND Reader", getPermissionTableValue(r, 1)));
2184
}
2185
2186
findButton("Clear All").click();
0 commit comments