Skip to content

Commit f1d61f2

Browse files
committed
refactor(test-suite): rename negative acl blocks to be more precise in grep
1 parent 0bdbb50 commit f1d61f2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test-suite/e2e/test/delegatedUserDecryption/delegatedUserDecryption.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ describe('Delegated user decryption', function () {
200200
expect(Number(decryptedBalanceBefore) - Number(decryptedBalanceAfter)).to.equal(Number(transferAmount));
201201
});
202202

203-
describe('negative', function () {
203+
describe('negative-acl', function () {
204204
it('should reject when delegation has been revoked', async function () {
205205
// First, ensure Bob has delegation.
206206
const expirationTimestamp = Math.floor(Date.now() / 1000) + 86400;

test-suite/e2e/test/encryptedERC20/EncryptedERC20.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ describe('EncryptedERC20', function () {
235235
expect(balanceBob2).to.equal(1337); // check that transfer did happen this time
236236
});
237237

238-
describe('negative', function () {
238+
describe('negative-acl', function () {
239239
it('should reject when user is not allowed for handle', async function () {
240240
const transaction = await this.erc20.mint(10000);
241241
await transaction.wait();

test-suite/e2e/test/httpPublicDecrypt/httpPublicDecrypt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('HTTPPublicDecrypt', function () {
3939
assert.deepEqual(res.clearValues, expectedRes);
4040
});
4141

42-
describe('negative', function () {
42+
describe('negative-acl', function () {
4343
it('should reject when handle is not publicly decryptable', async function () {
4444
const factory = await ethers.getContractFactory('UserDecrypt');
4545
const contract = await factory.connect(this.signers.alice).deploy();

test-suite/e2e/test/userDecryption/userDecryption.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe('User decryption', function () {
130130
expect(decryptedValue).to.equal(74285495974541385002137713624115238327312291047062397922780925695323480915729n);
131131
});
132132

133-
describe('negative', function () {
133+
describe('negative-acl', function () {
134134
it('should reject when user is not allowed for handle', async function () {
135135
const handle = await this.contract.xBool();
136136
const { publicKey: publicKeyBob, privateKey: privateKeyBob } = this.instances.bob.generateKeypair();

test-suite/fhevm/fhevm-cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ case $COMMAND in
392392
;;
393393
negative-acl)
394394
log_message="${LIGHT_BLUE}${BOLD}[TEST] NEGATIVE ACL${RESET}"
395-
docker_args+=("-g" "negative")
395+
docker_args+=("-g" "negative-acl")
396396
;;
397397
paused-host-contracts)
398398
log_message="${LIGHT_BLUE}${BOLD}[TEST] PAUSED HOST CONTRACTS${RESET}"

0 commit comments

Comments
 (0)