Skip to content

Commit

Permalink
JAMES-2586 Fixup compile error after merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
vttranlina committed Jun 25, 2024
1 parent 17338b5 commit feff57b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void setQuotaLimitWithEmptyQuotaLimitValueShouldNotThrowNullPointerException() {
QuotaLimit emptyQuotaLimitValue = QuotaLimit.builder().quotaComponent(QuotaComponent.MAILBOX).quotaScope(QuotaScope.DOMAIN).identifier("A").quotaType(QuotaType.COUNT).build();
cassandraQuotaLimitDao.setQuotaLimit(emptyQuotaLimitValue).block();

assertThat(cassandraQuotaLimitDao.getQuotaLimit(CassandraQuotaLimitDao.QuotaLimitKey.of(QuotaComponent.MAILBOX, QuotaScope.DOMAIN, "A", QuotaType.COUNT)).block())
assertThat(cassandraQuotaLimitDao.getQuotaLimit(QuotaLimit.QuotaLimitKey.of(QuotaComponent.MAILBOX, QuotaScope.DOMAIN, "A", QuotaType.COUNT)).block())
.isEqualTo(emptyQuotaLimitValue);
}

Expand Down

0 comments on commit feff57b

Please sign in to comment.