fix unneeded commits

This commit is contained in:
Tomas 2023-11-30 15:02:39 +02:00
parent d506d833d9
commit a9abc8a281
2 changed files with 3 additions and 11 deletions

View file

@ -16,14 +16,14 @@
- version - version
register: primary_info register: primary_info
- name: Assert that test container runs the expected MySQL/MariaDB version - name: Assert that test container runs the expected MySQL/MariaDB version
assert: assert:
that: that:
- registred_db_version == db_version_value - registred_db_version == db_version_value
vars: vars:
registred_db_version: "'{{ primary_info.version.major }}.{{ primary_info.version.minor }}\ registred_db_version:
.{{ primary_info.version.release }}'" "{{ primary_info.version.major }}.{{ primary_info.version.minor }}\
.{{ primary_info.version.release }}"
db_version_value: "'{{ db_version }}'" db_version_value: "'{{ db_version }}'"
- name: Assert that mysql_info module used the expected version of pymysql - name: Assert that mysql_info module used the expected version of pymysql

View file

@ -84,10 +84,6 @@
mysql_primary_port_value: '{{ mysql_primary_port }}' mysql_primary_port_value: '{{ mysql_primary_port }}'
test_channel_value: '{{ test_channel }}' test_channel_value: '{{ test_channel }}'
when: mysql8022_and_higher == false when: mysql8022_and_higher == false
vars:
mysql_host_value: '{{ mysql_host }}'
mysql_primary_port_value: '{{ mysql_primary_port }}'
test_channel_value: '{{ test_channel }}'
- assert: - assert:
that: that:
@ -104,10 +100,6 @@
mysql_primary_port_value: '{{ mysql_primary_port }}' mysql_primary_port_value: '{{ mysql_primary_port }}'
test_channel_value: '{{ test_channel }}' test_channel_value: '{{ test_channel }}'
when: mysql8022_and_higher == true when: mysql8022_and_higher == true
vars:
mysql_host_value: '{{ mysql_host }}'
mysql_primary_port_value: '{{ mysql_primary_port }}'
test_channel_value: '{{ test_channel }}'
# Test stopreplica mode: # Test stopreplica mode: