@@ -1031,7 +1031,7 @@ describe('created dates on recurring task', () => {
1031
1031
1032
1032
it ( 'should not set created date with disabled setting' , ( ) => {
1033
1033
// Arrange
1034
- const line = '- [ ] this is a task π
2021-09-12 π every day ' ;
1034
+ const line = '- [ ] this is a task π every day π
2021-09-12' ;
1035
1035
updateSettings ( { setCreatedDate : false } ) ;
1036
1036
1037
1037
// Act
@@ -1043,7 +1043,7 @@ describe('created dates on recurring task', () => {
1043
1043
1044
1044
it ( 'should not set created date if setting disabled, even if original has created date' , ( ) => {
1045
1045
// Arrange
1046
- const line = '- [ ] this is a task β 2021-09-11 π
2021-09-12 π every day ' ;
1046
+ const line = '- [ ] this is a task π every day β 2021-09-11 π
2021-09-12' ;
1047
1047
updateSettings ( { setCreatedDate : false } ) ;
1048
1048
1049
1049
// Act
@@ -1055,7 +1055,7 @@ describe('created dates on recurring task', () => {
1055
1055
1056
1056
it ( 'should set created date if setting enabled' , ( ) => {
1057
1057
// Arrange
1058
- const line = '- [ ] this is a task π
2021-09-12 π every day ' ;
1058
+ const line = '- [ ] this is a task π every day π
2021-09-12' ;
1059
1059
updateSettings ( { setCreatedDate : true } ) ;
1060
1060
1061
1061
// Act
@@ -1067,7 +1067,7 @@ describe('created dates on recurring task', () => {
1067
1067
1068
1068
it ( 'should set created date if setting enabled, when original has created date' , ( ) => {
1069
1069
// Arrange
1070
- const line = '- [ ] this is a task β 2021-09-11 π
2021-09-12 π every day ' ;
1070
+ const line = '- [ ] this is a task π every day β 2021-09-11 π
2021-09-12' ;
1071
1071
updateSettings ( { setCreatedDate : true } ) ;
1072
1072
1073
1073
// Act
0 commit comments