Skip to content

Commit dcd08c4

Browse files
committed
m
1 parent 4b67929 commit dcd08c4

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.github/workflows/ci_test_net.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ jobs:
5353
echo "DYLD_LIBRARY_PATH=$(brew --prefix openssl@3)/lib" >> $GITHUB_ENV
5454
echo "DOTNET_CRYPTO_ENGINE_ADAPTER=System.Security.Cryptography.Algorithms.Managed" >> $GITHUB_ENV
5555
56-
- name: Setup .NET OpenSSL on Mac
57-
if: matrix.os == 'macos-14'
58-
run: |
59-
brew install openssl@3
60-
echo "DYLD_LIBRARY_PATH=$(brew --prefix openssl@3)/lib" >> $GITHUB_ENV
61-
echo "DOTNET_CRYPTO_ENGINE_ADAPTER=System.Security.Cryptography.Algorithms.Managed" >> $GITHUB_ENV
62-
6356
- name: Setup Dafny
6457
uses: ./submodules/MaterialProviders/.github/actions/setup_dafny/
6558
with:

TestVectors/dafny/DDBEncryption/src/TestVectors.dfy

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,12 +369,7 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
369369
modifies client.Modifies
370370
{
371371
DeleteTable(client);
372-
// var _ :- expect client.CreateTable(schemaOnEncrypt);
373-
var xxx := client.CreateTable(schemaOnEncrypt);
374-
if xxx.Failure? {
375-
print "***\n", xxx, "\n***\n";
376-
expect false;
377-
}
372+
var _ :- expect client.CreateTable(schemaOnEncrypt);
378373
for i := 0 to |records| {
379374
var input := DDB.PutItemInput(
380375
TableName := TableName,

0 commit comments

Comments
 (0)