Skip to content

Commit

Permalink
fix: Move test sync status flag booleans to the TestBooleanPlatformPa…
Browse files Browse the repository at this point in the history
…rameter file
  • Loading branch information
kkmurerwa committed Oct 30, 2023
1 parent 4dae83c commit 81d968b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,22 @@ const val TEST_BOOLEAN_PARAM_DEFAULT_VALUE = false
* Server value for the test boolean platform parameter. Only used in tests related to platform parameter.
*/
const val TEST_BOOLEAN_PARAM_SERVER_VALUE = true

/**
* Feature flag sync status name for the test string platform parameter. This name helps retrieve
* the sync status of the [TestStringParam]. Only used in tests related to platform parameter.
*/
const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED =
"flag_test_string_param_name_is_server_provided"

/**
* Default value for the feature flag sync status tracker for the [TestStringParam]. Only used in
* tests related to platform parameter.
*/
const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED_DEFAULT_VALUE = false

/**
* Server value for the test string platform parameter. Only used in tests related to platform
* parameter.
*/
const val TEST_STRING_PARAM_SYNC_STATUS_FLAG_SERVER_VALUE = true
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,3 @@ const val TEST_STRING_PARAM_DEFAULT_VALUE = "test_string_param_default_value"
* parameter.
*/
const val TEST_STRING_PARAM_SERVER_VALUE = "test_string_param_value"

/**
* Feature flag sync status name for the test string platform parameter. This name helps retrieve
* the sync status of the [TestStringParam]. Only used in tests related to platform parameter.
*/
const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED =
"flag_test_string_param_name_is_server_provided"

/**
* Default value for the feature flag sync status tracker for the [TestStringParam]. Only used in
* tests related to platform parameter.
*/
const val FLAG_TEST_STRING_PARAM_IS_SERVER_PROVIDED_DEFAULT_VALUE = false

/**
* Server value for the test string platform parameter. Only used in tests related to platform
* parameter.
*/
const val TEST_STRING_PARAM_SYNC_STATUS_FLAG_SERVER_VALUE = true

0 comments on commit 81d968b

Please sign in to comment.