File tree 4 files changed +20
-4
lines changed
java/ru/mystamps/web/feature/series
resources/liquibase/version
test/robotframework/series/creation
4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 21
21
final class SeriesDb {
22
22
23
23
static final class Series {
24
- static final int COMMENT_LENGTH = 255 ;
24
+ static final int COMMENT_LENGTH = 1024 ;
25
25
}
26
26
27
27
}
Original file line number Diff line number Diff line change 5
5
xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
6
6
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd" >
7
7
8
-
8
+ < include file = " 0.4.5/2020-08-21--series_comment_length.xml " relativeToChangelogFile = " true " />
9
9
10
10
</databaseChangeLog >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <databaseChangeLog
3
+ xmlns=" http://www.liquibase.org/xml/ns/dbchangelog"
4
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
6
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd" >
7
+
8
+ <changeSet id =" increase-length-of-series-comment-field" author =" php-coder" context =" scheme" >
9
+
10
+ <modifyDataType tableName =" series"
11
+ columnName=" comment"
12
+ newDataType=" VARCHAR(1024)" />
13
+
14
+ </changeSet >
15
+
16
+ </databaseChangeLog >
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ Create series with too long comment
57
57
${letter } = Set Variable x
58
58
Click Element id:add-comment-link
59
59
Wait Until Element Is Visible id:comment
60
- Input Text id:comment ${letter * 256 }
60
+ Input Text id:comment ${letter * 1025 }
61
61
Submit Form id:add-series-form
62
- Element Text Should Be id:comment.errors Value is greater than allowable maximum of 255 characters
62
+ Element Text Should Be id:comment.errors Value is greater than allowable maximum of 1024 characters
63
63
64
64
*** Keywords ***
65
65
Before Test Suite
You can’t perform that action at this time.
0 commit comments