diff options
author | Frank Denis | 2025-03-12 08:27:13 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-03-12 20:43:23 +0100 |
commit | 2130e49349689ca7937a0e8338588f7fb96030c0 (patch) | |
tree | 83ef40d65b7c9ef948ed3946df75239925a52b89 /tests | |
parent | e445b2f3f84f8b09b391c4bee2e6c2886963f2fe (diff) |
Inverted test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/matrix/matrix_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 0476764..736cfb8 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -80,7 +80,7 @@ var matrixAegisAdditions = []testcaseMatrix{ // This is the entry point for the tests func TestMain(m *testing.M) { - if !common.Available { + if common.Available { matrix = append(matrix, matrixAegisAdditions...) } |