
|
If you were logged in you would be able to see more operations.
|
|
|
WET
Created: 18/Aug/06 04:45 AM
Updated: 09/Jul/07 01:58 AM
|
|
| Component/s: |
Script Assistant
|
| Affects Version/s: |
0.9.8_beta1
|
| Fix Version/s: |
1.0.0
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
|
Steps to reproduce:
1.Open the new repository.
2.Enter some sample text in the description text area. The description should contain few newlines and blank lines.
3.Save the repository.
4.Close the windows and re-load the same repository.
Expected:
The repository should get reloaded and the description should be the same as entered earlier.
Actual:
Only the first line of the description is loaded. The rest of the description is skipped.
|
|
Description
|
Steps to reproduce:
1.Open the new repository.
2.Enter some sample text in the description text area. The description should contain few newlines and blank lines.
3.Save the repository.
4.Close the windows and re-load the same repository.
Expected:
The repository should get reloaded and the description should be the same as entered earlier.
Actual:
Only the first line of the description is loaded. The rest of the description is skipped.
|
Show » |
|
Can you look into this? If the test definitions description has new lines, then this needs to be encoded.
description.Replace("\r\n", "/n")
description.Replace("\r", "/r")
description.Replace("\n", "/n")
Thanks
Raghu