Browse Source

Explicitly set the form's size in ironpython unit test before generating code.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3739 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 17 years ago
parent
commit
76ea758b2a
  1. 3
      src/AddIns/BackendBindings/Python/PythonBinding/Test/Designer/TextEditorIndentPassedToGeneratorTestFixture.cs

3
src/AddIns/BackendBindings/Python/PythonBinding/Test/Designer/TextEditorIndentPassedToGeneratorTestFixture.cs

@ -49,7 +49,8 @@ namespace PythonBinding.Tests.Designer @@ -49,7 +49,8 @@ namespace PythonBinding.Tests.Designer
using (Form form = new Form()) {
form.Name = "MainForm";
form.ClientSize = new Size(284, 264);
MockTextEditorProperties textEditorProperties = new MockTextEditorProperties();
textEditorProperties.ConvertTabsToSpaces = true;
textEditorProperties.IndentationSize = 1;

Loading…
Cancel
Save