Changes between Initial Version and Version 2 of Ticket #26795


Ignore:
Timestamp:
Jun 23, 2016, 2:14:33 AM (8 years ago)
Author:
Akshesh Doshi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26795

    • Property Easy pickings set
  • Ticket #26795 – Description

    initial v2  
    33{{{
    44#!python
     5
     6
    57    before = self.make_project_state([self.author_name])
    68    after = self.make_project_state([self.author_name_longer])
    79    autodetector = MigrationAutodetector(before, after)
    810    changes = autodetector._detect_changes()
     11
    912}}}
    1013
     
    1215{{{
    1316#!python
    14 def get_changes(self, before_states, after_states):
    15     before = self.make_project_state([self.author_name])
    16     after = self.make_project_state([self.author_name_longer])
    17     autodetector = MigrationAutodetector(before, after)
    18     return autodetector._detect_changes()
     17
     18
     19    def get_changes(self, before_states, after_states):
     20        before = self.make_project_state([self.author_name])
     21        after = self.make_project_state([self.author_name_longer])
     22        autodetector = MigrationAutodetector(before, after)
     23        return autodetector._detect_changes()
     24
    1925}}}
Back to Top