Skip to content

Commit

Permalink
SGB-268 Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolwenn-cadic-sonarsource authored and sonartech committed Jan 10, 2025
1 parent 7df33eb commit 0b40400
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/
package org.sonar.server.platform.db.migration.version.v202501;

import java.util.UUID;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;
Expand Down Expand Up @@ -148,8 +147,8 @@ private void enableProperty(String property) {
}

private void defineProperty(String property, String value) {
db.executeInsert("properties", "prop_key", property, "is_empty", "false",
"text_value", value, "uuid", UUID.randomUUID(), "created_at", 1_000_000_000_000L);
db.executeInsert("properties", "prop_key", property, "is_empty", false,
"text_value", value, "uuid", property, "created_at", 1_000_000_000_000L);
}

private void disableSaml(){
Expand Down

0 comments on commit 0b40400

Please sign in to comment.